summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2000-11-20 15:10:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2000-11-20 15:10:00 +0000
commitd6353595a277f6bc01d83eeab96885bc405fe8c5 (patch)
tree71c90fa3097f9e02687e3e0cfe72d98bf9e222c5
parent26ce73d01268f92075650af3548ea55f3d13175b (diff)
Put -c before $< for Sun PRO compilers.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1333 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--CHANGES3
-rw-r--r--makeinclude.in8
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 71d6b8cd6..7c433d5d0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
CHANGES SINCE FLTK 1.0.9
+ - Updated the makeinclude.in file to work with the Sun
+ PRO compilers.
+
- Disabled the WIN32 async socket select code by default:
it doesn't seem to work anymore...
diff --git a/makeinclude.in b/makeinclude.in
index eadc6b47c..8147764c4 100644
--- a/makeinclude.in
+++ b/makeinclude.in
@@ -1,5 +1,5 @@
#
-# "$Id: makeinclude.in,v 1.7.2.6 2000/10/21 20:01:55 spitzak Exp $"
+# "$Id: makeinclude.in,v 1.7.2.7 2000/11/20 15:10:00 easysw Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
# @configure_input@
@@ -64,12 +64,12 @@ GLDLIBS =@LDFLAGS@ @LIBS@ @GLLIB@ -lX11 -lXext @X_EXTRA_LIBS@ -lm
.c.o:
echo Compiling $@...
- $(CC) -I.. $(CFLAGS) $< -c
+ $(CC) -I.. $(CFLAGS) -c $<
.cxx.o:
echo Compiling $@...
- $(CXX) -I.. $(CXXFLAGS) $< -c
+ $(CXX) -I.. $(CXXFLAGS) -c $<
#
-# End of "$Id: makeinclude.in,v 1.7.2.6 2000/10/21 20:01:55 spitzak Exp $".
+# End of "$Id: makeinclude.in,v 1.7.2.7 2000/11/20 15:10:00 easysw Exp $".
#