X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=Makefile;h=d8d51c64159f72f26d7c4c71372b39ee871f8c38;hb=4a97984599e958ab9954e9bc09fb46b9e61e054a;hp=1e054a06692d68a390c53f442494d56d55e2277a;hpb=8b58c92450692dd050a8200742d04f55e336ae53;p=egate.git diff --git a/Makefile b/Makefile index 1e054a0..d8d51c6 100644 --- a/Makefile +++ b/Makefile @@ -1,30 +1,55 @@ # Top level Makefile for Email gateway. # Europagate, 1994-1995. # -# $Id: Makefile,v 1.15 1995/02/23 10:07:53 adam Exp $ +# $Id: Makefile,v 1.28 1996/01/09 16:16:02 adam Exp $ # SHELL=/bin/sh MAKE=make -SUBDIR=res+log util fml ccl zlayer kernel -CFLAGS=-Wall -g -pedantic -ansi -#CC=gcc +#CC=checkergcc CPP=$(CC) -E +LIBDIR=/usr/local/lib/emailgw -# For sun-sparc-solaris -#ZPRE=/usr/local/emailgw/src/zdist102b1-1/libz3950 -#ZDEFS=-DHIGH_TO_LOW -Dfar= +# GNU regex package location +#REGEXOBJ=../../../pd-src/regex-0.12/regex.o +#REGEXINC=-I../../../pd-src/regex-0.12 + +# Other libraries libraries needed on some systems #NETLIB=-lnsl -lsocket -# For linux -ZPRE=/home/proj/zdist/zdist102b1-1/libz3950 -ZDEFS=-DLOW_TO_HIGH -Dfar= +# If you are using YAZ uncomment these lines +ZACC=zlayer-yaz +ZINC=-I../../yaz/include +ZLIB=../../yaz/lib/libyaz.a +ZDEFS= + +# If you are using Zdist uncomment these lines +#ZACC=zlayer-zdist +#ZINC=-I/home/proj/zdist/zdist102b1-1/libz3950 +#ZLIB=/home/proj/zdist/zdist102b1-1/libz3950/libz3950.a +#ZDEFS=-DLOW_TO_HIGH -Dfar= + +SUBDIR=res+log util ccl fml $(ZACC) kernel www all: - for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS)" CC="$(CC)" ZPRE="$(ZPRE)" CPP="$(CPP)" NETLIB="$(NETLIB)" ZDEFS="$(ZDEFS)"; then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS)" CC="$(CC)" ZINC="$(ZINC)" ZLIB="$(ZLIB)" CPP="$(CPP)" NETLIB="$(NETLIB)" REGEXOBJ="$(REGEXOBJ)" REGEXINC="$(REGEXINC)" ZDEFS="$(ZDEFS)"; then cd ..; else exit 1; fi; done dep depend: - for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS)" CC="$(CC)" ZPRE="$(ZPRE)" CPP="$(CPP)" ZDEFS="$(ZDEFS)" depend; then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS)" CC="$(CC)" ZINC="$(ZINC)" CPP="$(CPP)" REGEXINC="$(REGEXINC)" ZDEFS="$(ZDEFS)" depend; then cd ..; else exit 1; fi; done +install: + @if [ ! -d $(LIBDIR) ]; then \ + echo "Making directory $(LIBDIR)"; \ + mkdir $(LIBDIR); \ + fi + @cd kernel; for i in eti monitor kernel; do \ + echo "Installing $$i"; \ + cp $$i $(LIBDIR); chmod +x $(LIBDIR)/$$i; \ + done + @cd kernel; for i in *.res *.bib *.fml; do \ + echo "Installing $$i"; \ + cp $$i $(LIBDIR);\ + done + clean: -rm -f lib/*.a for i in $(SUBDIR); do (cd $$i; $(MAKE) clean); done @@ -33,26 +58,24 @@ distclean: clean cleandepend cleandepend: for i in $(SUBDIR); do (cd $$i; \ - mv Makefile Makefile.old; \ - sed '/^#Depend/q' Makefile; \ - rm Makefile.old); done + if sed '/^#Depend/q' Makefile.tmp; then \ + mv -f Makefile.tmp Makefile; fi; rm -f .depend); done -usedepend1: +taildepend: for i in $(SUBDIR); do (cd $$i; \ - mv Makefile Makefile.tmp; \ - sed 's/^if/#if/' Makefile; \ - rm Makefile.tmp); done + if sed 's/^if/#GNUif/'Makefile.tmp; then \ + mv -f Makefile.tmp Makefile; fi); done -usedepend2: +gnudepend: for i in $(SUBDIR); do (cd $$i; \ - mv Makefile Makefile.tmp; \ - sed '/^#Depend/q' Makefile; \ - rm Makefile.tmp); done + if sed '/^#Depend/q' Makefile.tmp;then \ + mv -f Makefile.tmp Makefile; fi); done wc: wc `find . -name '*.[ch]'`