Revise configure script and makeinclude file to use OPTIM variable,

and to provide new "--with-optim=flags" option.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1929 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2002-01-13 19:17:36 +00:00
parent a33a9e34d4
commit 7a82535b93
3 changed files with 78 additions and 37 deletions
+5 -4
View File
@@ -1,5 +1,5 @@
#
# "$Id: makeinclude.in,v 1.7.2.11.2.14 2002/01/01 15:11:27 easysw Exp $"
# "$Id: makeinclude.in,v 1.7.2.11.2.15 2002/01/13 19:17:36 easysw Exp $"
#
# Make include file for the Fast Light Tool Kit (FLTK).
# @configure_input@
@@ -45,8 +45,9 @@ CC =@CC@
MAKEDEPEND =@MAKEDEPEND@
# flags for C++ compiler:
CFLAGS =@CPPFLAGS@ @CFLAGS@
CXXFLAGS =@CPPFLAGS@ @CXXFLAGS@
OPTIM =@OPTIM@
CFLAGS =$(OPTIM) @CFLAGS@
CXXFLAGS =$(OPTIM) @CXXFLAGS@
# program to make the archive:
LIBNAME =@LIBNAME@
@@ -112,5 +113,5 @@ CAT3EXT =@CAT3EXT@
mv t.z $@
#
# End of "$Id: makeinclude.in,v 1.7.2.11.2.14 2002/01/01 15:11:27 easysw Exp $".
# End of "$Id: makeinclude.in,v 1.7.2.11.2.15 2002/01/13 19:17:36 easysw Exp $".
#