jorton 2002/11/26 02:25:11
Modified: test Makefile.in
Log:
Fix use of $< outside inference rules (another GNU make extension).
Revision Changes Path
1.114 +1 -1 apr/test/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr/test/Makefile.in,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- Makefile.in 25 Nov 2002 20:26:16 -0000 1.113
+++ Makefile.in 26 Nov 2002 10:25:11 -0000 1.114
@@ -72,7 +72,7 @@
# FIXME: -prefer-pic is only supported with libtool-1.4+
mod_test.slo: mod_test.c
- $(LIBTOOL) --mode=compile $(COMPILE) -prefer-pic -c $< && touch $@
+ $(LIBTOOL) --mode=compile $(COMPILE) -prefer-pic -c mod_test.c && touch
$@
mod_test.la: mod_test.slo $(LOCAL_LIBS)
$(LINK) --mode=link $(COMPILE) -rpath `pwd` -avoid-version -module
mod_test.lo $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@