mirror of
https://github.com/fltk/fltk.git
synced 2026-06-04 06:56:24 +08:00
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:
+4
-4
@@ -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 $".
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user