From 6647c3a303cb6b556132825c67465637a22944d9 Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 8 Jul 2003 10:39:38 +0000 Subject: [PATCH 1/1] (LIBTOOL): New variable. (distclean): New target. --- Makefile.in | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/Makefile.in b/Makefile.in index 37b1d66..dbb0ec0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,8 +1,12 @@ CC = @CC@ DEFS = @DEFS@ LIBS = @LIBS@ -ldb +CFLAGS = $(DEFS) -g -O2 -c + +LIBTOOL = @LIBTOOL@ + +RM = /bin/rm -f -CFLAGS = $(DEFS) -g -O2 -c ## The default location for installation. Everything is placed in ## subdirectories of this directory. The default values for many of @@ -26,16 +30,14 @@ DB_INSTALLDIR = ${libdir}/chise VERSION = @PACKAGE_VERSION@ -RM = /bin/rm -f - all: libchise.la libchise.la: chise.lo - libtool $(CC) -o libchise.la chise.lo $(LIBS) -rpath ${libdir} + $(LIBTOOL) $(CC) -o libchise.la chise.lo $(LIBS) -rpath ${libdir} chise.lo: chise.c chise.h - libtool $(CC) $(CFLAGS) chise.c + $(LIBTOOL) $(CC) $(CFLAGS) chise.c install: install.h install.libs install.db @@ -44,15 +46,19 @@ install.h: install -c chise.h $(INCLUDE_INSTALLDIR) install.libs: libchise.la - libtool install -c libchise.la $(LIB_INSTALLDIR) + $(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 + + clean: -$(RM) -r *.o *.lo *.so *.la .libs sample - -sample: sample.c libchise.so - gcc -o sample sample.c -lchise +distclean: clean + -$(RM) Makefile config.h config.status config.log -- 1.7.10.4