First work on Z39.50 persistence.
[egate.git] / kernel / Makefile
index 6d4063d..05f8b6f 100644 (file)
@@ -2,7 +2,23 @@
 # Europagate, 1995
 #
 # $Log: Makefile,v $
-# Revision 1.11  1995/03/03 17:19:09  adam
+# Revision 1.16  1995/04/19 07:30:56  adam
+# First work on Z39.50 persistence.
+#
+# Revision 1.15  1995/04/17  11:27:29  quinn
+# Smallish
+#
+# Revision 1.14  1995/04/17  09:34:23  adam
+# Timeout (idletime) adjustable. Minor changes in kernel.
+#
+# Revision 1.13  1995/03/27  12:51:04  adam
+# New log level in use: GW_LOG_ERRNO.
+#
+# Revision 1.12  1995/03/27  08:23:57  adam
+# First use of gip interface and gw-db.
+# First work on eti program.
+#
+# Revision 1.11  1995/03/03  17:19:09  adam
 # Smarter presentation. Bug fix in email header interpretation.
 #
 # Revision 1.10  1995/03/01  14:32:24  adam
@@ -44,37 +60,47 @@ ZPRE=/home/proj/zdist/zdist102b1-1/libz3950
 ZINC=-I$(ZPRE)
 ZLIB=$(ZPRE)/libz3950.a
 
+#ZLIB=../../yaz/lib/libyaz.a
+
 INCLUDE=-I../include
-CFLAGS=-g -Wall 
-TPROG1=kernel
-O=main.o urp.o ttyemit.o
+#CFLAGS=-g -Wall 
 CPP=$(CC) -E
+DEFS=$(INCLUDE) -DUSE_FML=1
 USELIBS1=../lib/ccl.a ../lib/fml.a ../lib/libzass.a ../lib/libres+log.a \
 ../lib/util.a $(ZLIB) $(REGEXOBJ)
-DEFS=$(INCLUDE) -DUSE_FML=1
 
-all: $(TPROG1)
+PROG1=kernel
+O1=main.o urp.o persist.o
+
+PROG2=eti
+O2=eti.o
+
+all: $(PROG1) $(PROG2)
+
+$(PROG1): $(O1) $(USELIBS1)
+       $(CC) $(CFLAGS) -o $(PROG1) $(O1) $(USELIBS1) $(NETLIB)
 
-$(TPROG1): $(O) $(USELIBS1)
-       $(CC) $(CFLAGS) -o $(TPROG1) $(O) $(USELIBS1) $(NETLIB)
+$(PROG2): $(O2) $(USELIBS1)
+       $(CC) $(CFLAGS) -o $(PROG2) $(O2) $(USELIBS1) $(NETLIB)
 
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<
 
 clean:
-       rm -f *.log *.[oa] $(TPROG1) $(TPROG2) core mon.out gmon.out errlist *~
+       rm -f *.log *.[oa] $(PROG1) $(PROG2) 
+       rm -f core mon.out gmon.out errlist *~ fifo.* 
 
 depend: depend2
 
 depend1:
-       mv Makefile Makefile.tmp
-       sed '/^#Depend/q' <Makefile.tmp >Makefile
-       $(CPP) $(INCLUDE) -M *.c >>Makefile
-       -rm Makefile.tmp
+       sed '/^#Depend/q' <Makefile >Makefile.tmp
+       $(CPP) $(DEFS) -M *.c >>Makefile.tmp
+       mv -f Makefile.tmp Makefile
 
 depend2:
-       $(CPP) $(INCLUDE) -M *.c >.depend       
+       $(CPP) $(DEFS) -M *.c >.depend  
 
+#GNU make style depend
 ifeq (.depend,$(wildcard .depend))
 include .depend
 endif