jerenkrantz 2003/09/11 23:57:29
Modified: flood CHANGES
flood/build rules.mk.in
Log:
Axe the .deps stuff for now. I can't figure out how I intended this to
work.
Revision Changes Path
1.51 +2 -0 httpd-test/flood/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/httpd-test/flood/CHANGES,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -u -r1.50 -r1.51
--- CHANGES 8 Sep 2003 00:04:49 -0000 1.50
+++ CHANGES 12 Sep 2003 06:57:29 -0000 1.51
@@ -1,5 +1,7 @@
Changes since 1.0:
+* Remove .deps code that is just broken for now. [Justin Erenkrantz]
+
* Added configversion attribute (root element <flood>) which ties config
file structure with certain flood version and warns user if there is a
conflict. [Jacek Prucia]
1.4 +2 -2 httpd-test/flood/build/rules.mk.in
Index: rules.mk.in
===================================================================
RCS file: /home/cvs/httpd-test/flood/build/rules.mk.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -u -r1.3 -r1.4
--- rules.mk.in 3 Feb 2003 17:11:00 -0000 1.3
+++ rules.mk.in 12 Sep 2003 06:57:29 -0000 1.4
@@ -179,7 +179,7 @@
local-depend: x-local-depend
if test "`echo $(srcdir)/*.c`" != "$(srcdir)'/*.c'"; then \
- $(CC) -MM $(ALL_CPPFLAGS) $(ALL_INCLUDES) $(srcdir)/*.c | sed
's/\.o:/.lo:/' > $(builddir)/.deps || true; \
+ $(CC) -MM $(ALL_CPPFLAGS) $(ALL_INCLUDES) $(srcdir)/*.c | sed
's/\.o:/.lo:/' > $(top_builddir)/.deps || true; \
fi
local-clean: x-local-clean
@@ -252,7 +252,7 @@
#
# Dependencies
#
-include $(builddir)/.deps
+#include $(top_builddir)/.deps
.PHONY: all all-recursive install-recursive local-all $(PHONY_TARGETS) \
shared-build shared-build-recursive local-shared-build \