X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=kernel%2FMakefile;h=0be375002e99e67a50a4a5221d342d97727b9d98;hb=e5ac7ae8a2f7f9b01eab48d8b04a79288c567a1d;hp=a0110edc2dc85c3301e348f7c1f40abda9dfb5c0;hpb=0886ad03a73988611a1d7c8bb7b65cc00dae89cf;p=egate.git diff --git a/kernel/Makefile b/kernel/Makefile index a0110ed..0be3750 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -2,7 +2,37 @@ # Europagate, 1995 # # $Log: Makefile,v $ -# Revision 1.3 1995/02/17 09:08:35 adam +# 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 +# Better diagnostics. Default is, that only one database selected when +# several are known. +# +# Revision 1.9 1995/02/23 08:32:14 adam +# Changed header. +# +# Revision 1.7 1995/02/22 08:51:34 adam +# Output function can be customized in fml, which is used to print +# the reply to reply_fd. +# +# Revision 1.6 1995/02/21 14:00:08 adam +# Minor changes. +# +# Revision 1.5 1995/02/21 12:11:59 adam +# Diagnostic record with error info. observed. +# +# Revision 1.4 1995/02/20 21:16:16 adam +# FML support. Bug fixes. Profile for drewdb. +# +# Revision 1.3 1995/02/17 09:08:35 adam # Reply with subject. CCL base command implemented. # # Revision 1.2 1995/02/16 18:35:07 adam @@ -16,26 +46,38 @@ # # SHELL=/bin/sh + +ZPRE=/home/proj/zdist/zdist102b1-1/libz3950 +ZINC=-I$(ZPRE) +ZLIB=$(ZPRE)/libz3950.a + INCLUDE=-I../include -CFLAGS=-g -Wall -#CC=gcc -TPROG1=kernel -O=main.o urp.o -CPP=cc -E -USELIBS=../lib/ccl.a ../lib/fml.a ../lib/libzass.a ../lib/libres+log.a \ -../lib/util.a /home/proj/zdist/zdist102b1-1/libz3950/libz3950.a -DEFS=$(INCLUDE) +#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) + +PROG1=kernel +O1=main.o urp.o ttyemit.o + +PROG2=eti +O2=eti.o + +all: $(PROG1) $(PROG2) -all: $(TPROG1) +$(PROG1): $(O1) $(USELIBS1) + $(CC) $(CFLAGS) -o $(PROG1) $(O1) $(USELIBS1) $(NETLIB) -$(TPROG1): $(O) $(USELIBS) - $(CC) $(CFLAGS) -o $(TPROG1) $(O) $(USELIBS) +$(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