Date: Friday, April 13, 2007 @ 20:34:10
  Author: marc
    Path: /cvsroot/carob/libmysequoia/ldtest

Modified: Makefile (1.2 -> 1.3)

$< -> $? for FreeBSD


----------+
 Makefile |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: libmysequoia/ldtest/Makefile
diff -u libmysequoia/ldtest/Makefile:1.2 libmysequoia/ldtest/Makefile:1.3
--- libmysequoia/ldtest/Makefile:1.2    Fri Apr 13 18:10:30 2007
+++ libmysequoia/ldtest/Makefile        Fri Apr 13 20:34:10 2007
@@ -9,18 +9,18 @@
 all: ${ALL} run
 
 liborig.so: orig.c
-       ${CC} ${DOLIB} $< -o $@
+       ${CC} ${DOLIB} $? -o $@
 
 liboverride.so: override.c
-       ${CC} ${DOLIB} $< -o $@
+       ${CC} ${DOLIB} $? -o $@
 
 
 plugin.so: plugin.c liborig.so
-       ${CC} ${DOLIB} $< -o $@ -L. -lorig
+       ${CC} ${DOLIB} $? -o $@ -L. -lorig
 
 
 main: main.cpp
-       ${CXX} -L. ${MAINFLAGS} $< -o $@ -ldl
+       ${CXX} -L. ${MAINFLAGS} $? -o $@ -ldl
 
 
 run:

_______________________________________________
Carob-commits mailing list
[EMAIL PROTECTED]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to