X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=Makefile;h=d8d51c64159f72f26d7c4c71372b39ee871f8c38;hb=3f7171627cb85257e1d6c853d1b21d67b1e14257;hp=ed12eb41508915979f5979432544a7e8bb519792;hpb=cca0f6ebd5c2e0aafab3c12b48667c317a1e5d4c;p=egate.git diff --git a/Makefile b/Makefile index ed12eb4..d8d51c6 100644 --- a/Makefile +++ b/Makefile @@ -1,33 +1,55 @@ # Top level Makefile for Email gateway. # Europagate, 1994-1995. # -# $Id: Makefile,v 1.20 1995/04/17 09:31:02 adam Exp $ +# $Id: Makefile,v 1.28 1996/01/09 16:16:02 adam Exp $ # SHELL=/bin/sh MAKE=make -SUBDIR=res+log util ccl fml zlayer kernel -CFLAGS=-Wall -g -pedantic -ansi +#CC=checkergcc CPP=$(CC) -E +LIBDIR=/usr/local/lib/emailgw # GNU regex package location -#REGEXOBJ=/usr/local/gnu/regex-0.12/regex.o -#REGEXINC=-I/usr/local/gnu/regex-0.12 +#REGEXOBJ=../../../pd-src/regex-0.12/regex.o +#REGEXINC=-I../../../pd-src/regex-0.12 -# For sun-sparc-solaris -#ZPRE=/usr/local/emailgw/src/zdist102b1-1/libz3950 -#ZDEFS=-DHIGH_TO_LOW -Dfar= +# 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)" REGEXOBJ="$(REGEXOBJ)" REGEXINC="$(REGEXINC)" 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)" REGEXINC="$(REGEXINC)" 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 @@ -41,8 +63,8 @@ cleandepend: taildepend: for i in $(SUBDIR); do (cd $$i; \ - if sed 's/^if/#if/' Makefile.tmp; then \ mv -f Makefile.tmp Makefile; fi); done @@ -50,8 +72,8 @@ taildepend: gnudepend: for i in $(SUBDIR); do (cd $$i; \ if sed '/^#Depend/q' Makefile.tmp;then \ mv -f Makefile.tmp Makefile; fi); done