Add header.
[chise/libchise.git] / Makefile.in
index c18b01e..e1fe85d 100644 (file)
@@ -1,7 +1,7 @@
 CC = @CC@
 DEFS = @DEFS@
-LIBS = @LIBS@ -ldb
-CFLAGS = @CFLAGS@ -c
+LIBS = @LIBS@
+CFLAGS = @CFLAGS@ -c -Wall -Wmissing-prototypes
 
 LIBTOOL = @LIBTOOL@
 
@@ -12,49 +12,67 @@ RM  = /bin/rm -f
 ## subdirectories of this directory.  The default values for many of
 ## the variables below are expressed in terms of this one, so you may
 ## not need to change them.  This defaults to /usr/local.
-prefix=/usr/local
+prefix = @prefix@
 
 ## Like `prefix', but used for architecture-specific files.
-exec_prefix=${prefix}
+exec_prefix = @exec_prefix@
 
-## Where to install and expect executable files to be run by XEmacs
-## rather than directly by users, and other architecture-dependent data
-## ${archlibdir} is a subdirectory of this.
-libdir=${exec_prefix}/lib
+libdir = @libdir@
+
+libexecdir = @libexecdir@
+
+#localstatedir = @localstatedir@
+
+target = @target@
+
+top_builddir = @builddir@
 
 
 INCLUDE_INSTALLDIR = ${prefix}/include
 LIB_INSTALLDIR = ${libdir}
-DB_INSTALLDIR  = ${libdir}/chise
+CHISE_DIR_PREFIX = ${libexecdir}/chise
+CHISE_DIR_VERSION = 0.2
+CHISE_DIR      = ${CHISE_DIR_PREFIX}/${CHISE_DIR_VERSION}
+CHISE_DB_DIR   = ${CHISE_DIR}/${target}
+CHISE_SI_DB_DIR        = ${CHISE_DB_DIR}/db
 
+CHISE_CFLAGS   = \
+       -DCHISE_DB_DIR=\"${CHISE_DB_DIR}/\" \
+       -DCHISE_SI_DB_DIR=\"${CHISE_SI_DB_DIR}/\"
 
 VERSION                = @PACKAGE_VERSION@
+ABI_VERSION     = 1:0:0
+
+
+HEADERS        = chise.h chise-name.h
+OBJS   = chise.lo name.lo
 
 
 all:   libchise.la
 
-libchise.la:   chise.lo
-       $(LIBTOOL) $(CC) -o libchise.la chise.lo $(LIBS) -rpath ${libdir}
+libchise.la:   $(OBJS)
+       $(LIBTOOL) --mode=link \
+               $(CC) -o libchise.la $(OBJS) $(LIBS) \
+               -rpath ${libdir} -version-info $(ABI_VERSION)
 
-chise.lo:      chise.c chise.h
-       $(LIBTOOL) $(CC) $(CFLAGS) chise.c
+chise.lo:      chise.c chise.h config.h sysdep.h
+       $(LIBTOOL) $(CC) $(CHISE_CFLAGS) $(CFLAGS) chise.c
 
+name.lo:       name.c chise-name.h
+       $(LIBTOOL) $(CC) $(CFLAGS) name.c
 
-install:       install.h install.libs install.db
+
+install:       install.h install.libs
 
 install.h:
-       install -c chise.h $(INCLUDE_INSTALLDIR)
+       install -c $(HEADERS) $(INCLUDE_INSTALLDIR)
 
 install.libs:  libchise.la
        $(LIBTOOL) install -c libchise.la $(LIB_INSTALLDIR)
 
-install.db:
-       -mkdir -p $(DB_INSTALLDIR)
-       ln -sf `xemacs -q -batch -eval '(princ (file-name-as-directory exec-directory))'`char-db $(DB_INSTALLDIR)
-
 
 sample:        sample.c libchise.la
-       gcc -o sample sample.c -lchise
+       gcc -Wall -Wmissing-prototypes -o sample sample.c -lchise
 
 
 clean: