ben 99/09/11 13:42:24
Modified: src Makefile.tmpl
Log:
Build APR automatically.
Revision Changes Path
1.7 +4 -1 apache-2.0/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/Makefile.tmpl,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Makefile.tmpl 1999/09/10 16:06:53 1.6
+++ Makefile.tmpl 1999/09/11 20:42:19 1.7
@@ -28,7 +28,10 @@
@echo "++ If not, you will at least have to touch '@@Configuration@@'."
@false
-$(TARGET): $(EXTRA_DEPS) $(SUBTARGET)
+apr:
+ cd lib/apr; make
+
+$(TARGET): apr $(EXTRA_DEPS) $(SUBTARGET)
target_static: subdirs modules.o
$(CC) -c $(INCLUDES) $(CFLAGS) buildmark.c
|