## 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@
INCLUDE_INSTALLDIR = ${prefix}/include
LIB_INSTALLDIR = ${libdir}
-DB_INSTALLDIR = ${libdir}/chise
VERSION = @PACKAGE_VERSION@
ABI_VERSION = 1:0:0
+CHISE_DB_DIR = ${libexecdir}/chise/0.1/
+
+
HEADERS = chise.h chise-name.h
OBJS = chise.lo name.lo
+
all: libchise.la
libchise.la: $(OBJS)
-rpath ${libdir} -version-info $(ABI_VERSION)
chise.lo: chise.c chise.h config.h sysdep.h
- $(LIBTOOL) $(CC) $(CFLAGS) chise.c
+ $(LIBTOOL) $(CC) -DCHISE_DB_DIR=\"${CHISE_DB_DIR}\" \
+ $(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 $(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