X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=kernel%2FMakefile;h=1bb7c828f587cd358a3fb39c088873b3a4d4a27b;hb=aa975e8f85af258357639e3407ce40090f4a4998;hp=5686bc588b6d3920ff19996de467fdbc3fbc8714;hpb=f01040fd4a2fe0d6171984cbb6aed09bd172faa5;p=egate.git diff --git a/kernel/Makefile b/kernel/Makefile index 5686bc5..1bb7c82 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -2,7 +2,20 @@ # Europagate, 1995 # # $Log: Makefile,v $ -# Revision 1.21 1995/04/20 16:10:45 adam +# Revision 1.25 1995/05/19 13:25:58 adam +# Bug fixes. Better command line options. +# +# Revision 1.24 1995/05/03 12:18:46 adam +# This code ran on dtbsun. Minor changes. +# +# Revision 1.23 1995/05/03 07:37:29 adam +# CCL commands stop/continue implemented. New functions gw_res_{int,bool} +# are used when possible. +# +# Revision 1.22 1995/05/01 12:43:26 adam +# First work on resource monitor program. +# +# Revision 1.21 1995/04/20 16:10:45 adam # Modified to work with non-blocking zass-api. Not using non-blocking # facility yet. # @@ -83,29 +96,37 @@ INCLUDE=-I../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 persist.o +USELIBS1=../lib/ccl.a ../lib/fml.a ../lib/libzass.a ../lib/libres+log.a \ +../lib/util.a $(ZLIB) $(REGEXOBJ) PROG2=eti O2=eti.o +USELIBS2=../lib/libres+log.a ../lib/util.a -all: $(PROG1) $(PROG2) +PROG3=monitor +O3=monitor.o +USELIBS3=../lib/libres+log.a ../lib/util.a + +all: $(PROG1) $(PROG2) $(PROG3) $(PROG1): $(O1) $(USELIBS1) $(CC) $(CFLAGS) -o $(PROG1) $(O1) $(USELIBS1) $(NETLIB) -$(PROG2): $(O2) $(USELIBS1) - $(CC) $(CFLAGS) -o $(PROG2) $(O2) $(USELIBS1) $(NETLIB) +$(PROG2): $(O2) $(USELIBS2) + $(CC) $(CFLAGS) -o $(PROG2) $(O2) $(USELIBS2) $(NETLIB) + +$(PROG3): $(O3) $(USELIBS3) + $(CC) $(CFLAGS) -o $(PROG3) $(O3) $(USELIBS3) $(NETLIB) .c.o: $(CC) -c $(DEFS) $(CFLAGS) $< clean: - rm -f *.log *.[oa] $(PROG1) $(PROG2) - rm -f core mon.out gmon.out errlist *~ fifo.* + rm -f *.log *.[oa] $(PROG1) $(PROG2) $(PROG3) + rm -f core mon.out gmon.out errlist *~ fifo.* depend: depend2