summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-12 21:57:17 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-12 21:57:17 +0000
commitf15268f09f918d123d2ac97b1f806fbac2500df7 (patch)
tree7c7ffe3cd0e1e72c4d26a784cb6affc2db85133d
parentcd9639c212846ba3597f1f10551d1c55b6c51312 (diff)
Fix .c.o and .cxx.o rules ($< instead of $@)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1838 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--makeinclude.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/makeinclude.in b/makeinclude.in
index 1dd606fd8..4ad8af3e5 100644
--- a/makeinclude.in
+++ b/makeinclude.in
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.in,v 1.7.2.11.2.10 2001/12/06 02:20:36 matthiaswm Exp $"
+# "$Id: makeinclude.in,v 1.7.2.11.2.11 2001/12/12 21:57:17 easysw Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
# @configure_input@
@@ -89,11 +89,11 @@ CAT3EXT =@CAT3EXT@
$(POSTBUILD)
.c.o:
- echo Compiling $@...
+ echo Compiling $<...
$(CC) -I.. $(CFLAGS) -c $<
.cxx.o:
- echo Compiling $@...
+ echo Compiling $<...
$(CXX) -I.. $(CXXFLAGS) -c $<
.man.0 .man.1 .man.3:
@@ -109,5 +109,5 @@ CAT3EXT =@CAT3EXT@
mv t.z $@
#
-# End of "$Id: makeinclude.in,v 1.7.2.11.2.10 2001/12/06 02:20:36 matthiaswm Exp $".
+# End of "$Id: makeinclude.in,v 1.7.2.11.2.11 2001/12/12 21:57:17 easysw Exp $".
#