eba9938d6a
the FLTK (Fast Light ToolKit) library. They are designed to handle large amounts of data. As such they are definitely not the smallset of FLTK widgets, but they are designed to use memory conservatively. PR: ports/29860 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
26 lines
467 B
Text
26 lines
467 B
Text
--- makeinclude.in.orig Sat Jan 22 14:18:28 2000
|
|
+++ makeinclude.in Sat Aug 18 09:12:34 2001
|
|
@@ -56,7 +56,7 @@
|
|
# Rules...
|
|
#
|
|
|
|
-.SUFFIXES: .c .cxx .h .o
|
|
+.SUFFIXES: .c .cxx .h .o .lo
|
|
|
|
.c.o:
|
|
@echo Compiling $<...
|
|
@@ -65,6 +65,14 @@
|
|
.cxx.o:
|
|
@echo Compiling $<...
|
|
@$(CXX) $(CXXFLAGS) -I. -c $<
|
|
+
|
|
+.c.lo:
|
|
+ @echo Compiling $<...
|
|
+ @$(CC) $(CFLAGS) -c -o $@ $<
|
|
+
|
|
+.cxx.lo:
|
|
+ @echo Compiling $<...
|
|
+ @$(CXX) $(CXXFLAGS) -I. -c -o $@ $<
|
|
|
|
#
|
|
# End of makeinclude
|