X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=kernel%2FMakefile;h=852fed559a57e9e2d0939deac401fa62e4c7619e;hb=3f6af0f3aa9f114cf562c28f2ed0b954e4c5d659;hp=d2e74af8714c55de36cb3a2eaa8e838c18a8dbae;hpb=92d83f4da8146d58af3997cc489514ecd64aca32;p=egate.git diff --git a/kernel/Makefile b/kernel/Makefile index d2e74af..852fed5 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -1,8 +1,24 @@ # Makefile for Email gateway CCL # Europagate, 1995 # -# $Log: Makefile,v $ -# Revision 1.2 1995/02/16 18:35:07 adam +# Makefile,v +# 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 # First use of Zdist library. Search requests are supported. # Present requests are not supported yet. # @@ -13,20 +29,24 @@ # # SHELL=/bin/sh + +ZPRE=/home/proj/zdist/zdist102b1-1/libz3950 +ZINC=-I$(ZPRE) +ZLIB=$(ZPRE)/libz3950.a + INCLUDE=-I../include -CFLAGS=-g -Wall -pedantic -ansi -#CC=gcc +CFLAGS=-g -Wall 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) +CPP=$(CC) -E +USELIBS1=../lib/ccl.a ../lib/fml.a ../lib/libzass.a ../lib/libres+log.a \ +../lib/util.a $(ZLIB) +DEFS=$(INCLUDE) -DUSE_FML=1 all: $(TPROG1) -$(TPROG1): $(O) $(USELIBS) - $(CC) $(CFLAGS) -o $(TPROG1) $(O) $(USELIBS) +$(TPROG1): $(O) $(USELIBS1) + $(CC) $(CFLAGS) -o $(TPROG1) $(O) $(USELIBS1) $(NETLIB) .c.o: $(CC) -c $(DEFS) $(CFLAGS) $<