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
This commit is contained in:
Michael R Sweet
2001-12-12 21:57:17 +00:00
parent cd9639c212
commit f15268f09f
+4 -4
View File
@@ -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). # Make include file for the Fast Light Tool Kit (FLTK).
# @configure_input@ # @configure_input@
@@ -89,11 +89,11 @@ CAT3EXT =@CAT3EXT@
$(POSTBUILD) $(POSTBUILD)
.c.o: .c.o:
echo Compiling $@... echo Compiling $<...
$(CC) -I.. $(CFLAGS) -c $< $(CC) -I.. $(CFLAGS) -c $<
.cxx.o: .cxx.o:
echo Compiling $@... echo Compiling $<...
$(CXX) -I.. $(CXXFLAGS) -c $< $(CXX) -I.. $(CXXFLAGS) -c $<
.man.0 .man.1 .man.3: .man.0 .man.1 .man.3:
@@ -109,5 +109,5 @@ CAT3EXT =@CAT3EXT@
mv t.z $@ 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 $".
# #