akosut 96/03/20 19:17:46
Modified: cgi-src Makefile
Added: cgi-src animate.c count.c random.c util.h
Removed: cgi-bin animate.c count.c random.c
Log:
Moved Jim's CGI scripts from cgi-bin to cgi-src where they belong,
and added entries in the Makefile there for them. Also added util.h,
which I forgot when I updated cgi-src a month ago. Oops.
Revision Changes Path
1.3 +11 -2 apache/cgi-src/Makefile
Index: Makefile
===================================================================
RCS file: /export/home/cvs/apache/cgi-src/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C3 -r1.2 -r1.3
*** Makefile 1996/03/01 04:38:50 1.2
--- Makefile 1996/03/21 03:17:43 1.3
***************
*** 14,20 ****
.c.o:
$(CC) -c $(CFLAGS) $<
! all: query post-query imagemap jj phf
att:
make all CC=gcc CFLAGS="-O2 -DNO_STDLIB_H"
--- 14,20 ----
.c.o:
$(CC) -c $(CFLAGS) $<
! all: query post-query imagemap jj phf animate count random
att:
make all CC=gcc CFLAGS="-O2 -DNO_STDLIB_H"
***************
*** 76,84 ****
phf: phf.o util.o
$(CC) phf.o util.o -o ../cgi-bin/phf
change-passwd: change-passwd.o util.o
$(CC) change-passwd.o util.o -o ../sec-cgi/change-passwd
clean:
! rm -f *.o ../cgi-bin/post-query ../cgi-bin/query
../sec-cgi/change-passwd ../cgi-bin/phf ../cgi-bin/jj ../cgi-bin/imagemap
--- 76,93 ----
phf: phf.o util.o
$(CC) phf.o util.o -o ../cgi-bin/phf
+ animate: animate.o
+ $(CC) animate.o -o ../cgi-bin/animate
+
+ count: count.o
+ $(CC) count.o -o ../cgi-bin/count
+
+ random: random.o
+ $(CC) random.o -o ../cgi-bin/random
+
change-passwd: change-passwd.o util.o
$(CC) change-passwd.o util.o -o ../sec-cgi/change-passwd
clean:
! rm -f *.o ../cgi-bin/post-query ../cgi-bin/query
../sec-cgi/change-passwd ../cgi-bin/phf ../cgi-bin/jj ../cgi-bin/imagemap
../cgi-bin/animate ../cgi-bin/count ../cgi-bin/random