Use +O2 for compiler on HP-UX.

Show where we are installing.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1961 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2002-02-15 18:15:46 +00:00
parent ca09c66686
commit 71f9afb6cb
5 changed files with 17 additions and 16 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
# #
# "$Id: Makefile.in,v 1.1.2.4 2002/01/06 13:40:31 easysw Exp $" # "$Id: Makefile.in,v 1.1.2.5 2002/02/15 18:15:45 easysw Exp $"
# #
# Header makefile for the Fast Light Tool Kit (FLTK). # Header makefile for the Fast Light Tool Kit (FLTK).
# #
@@ -28,7 +28,7 @@ include ../makeinclude
all: all:
install: install:
echo "Installing include files..." echo "Installing include files in $(includedir)..."
-mkdir -p $(includedir) -mkdir -p $(includedir)
rm -rf $(includedir)/FL rm -rf $(includedir)/FL
mkdir $(includedir)/FL mkdir $(includedir)/FL
@@ -54,5 +54,5 @@ uninstall:
# #
# End of "$Id: Makefile.in,v 1.1.2.4 2002/01/06 13:40:31 easysw Exp $". # End of "$Id: Makefile.in,v 1.1.2.5 2002/02/15 18:15:45 easysw Exp $".
# #
+4 -4
View File
@@ -1,7 +1,7 @@
dnl -*- sh -*- dnl -*- sh -*-
dnl the "configure" script is made from this by running GNU "autoconf" dnl the "configure" script is made from this by running GNU "autoconf"
dnl dnl
dnl "$Id: configure.in,v 1.33.2.31.2.50 2002/01/22 00:46:09 easysw Exp $" dnl "$Id: configure.in,v 1.33.2.31.2.51 2002/02/15 18:15:45 easysw Exp $"
dnl dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl dnl
@@ -622,11 +622,11 @@ else
if test "x$with_optim" != x; then if test "x$with_optim" != x; then
OPTIM="$with_optim $OPTIM" OPTIM="$with_optim $OPTIM"
else else
OPTIM="-O2 $OPTIM" OPTIM="+O2 $OPTIM"
fi fi
fi fi
if test "x$with_optim" != x; then if test "x$with_optim" = x; then
OPTIM="$OPTIM +DAportable" OPTIM="$OPTIM +DAportable"
fi fi
@@ -683,5 +683,5 @@ dnl Make sure the fltk-config script is executable...
chmod +x fltk-config chmod +x fltk-config
dnl dnl
dnl End of "$Id: configure.in,v 1.33.2.31.2.50 2002/01/22 00:46:09 easysw Exp $". dnl End of "$Id: configure.in,v 1.33.2.31.2.51 2002/02/15 18:15:45 easysw Exp $".
dnl dnl
+4 -2
View File
@@ -1,5 +1,5 @@
# #
# "$Id: Makefile,v 1.9.2.10.2.10 2002/01/15 02:17:18 easysw Exp $" # "$Id: Makefile,v 1.9.2.10.2.11 2002/02/15 18:15:45 easysw Exp $"
# #
# Documentation makefile for the Fast Light Tool Kit (FLTK). # Documentation makefile for the Fast Light Tool Kit (FLTK).
# #
@@ -158,9 +158,11 @@ depend:
docdir = $(datadir)/doc/fltk docdir = $(datadir)/doc/fltk
install: $(MANPAGES) install: $(MANPAGES)
echo "Installing documentation files in $(docdir)..."
-mkdir -p $(docdir) -mkdir -p $(docdir)
cp $(HTMLFILES) *.gif *.jpg index.html $(docdir) cp $(HTMLFILES) *.gif *.jpg index.html $(docdir)
chmod 644 $(docdir)/* chmod 644 $(docdir)/*
echo "Installing man pages in $(mandir)..."
-mkdir -p $(mandir)/cat1 -mkdir -p $(mandir)/cat1
cp fluid.$(CAT1EXT) $(mandir)/cat1 cp fluid.$(CAT1EXT) $(mandir)/cat1
chmod 644 $(mandir)/cat1/fluid.$(CAT1EXT) chmod 644 $(mandir)/cat1/fluid.$(CAT1EXT)
@@ -206,5 +208,5 @@ fltk.pdf: $(HTMLFILES)
$(HTMLDOC) --verbose --batch fltk.book -f fltk.pdf $(HTMLDOC) --verbose --batch fltk.book -f fltk.pdf
# #
# End of "$Id: Makefile,v 1.9.2.10.2.10 2002/01/15 02:17:18 easysw Exp $". # End of "$Id: Makefile,v 1.9.2.10.2.11 2002/02/15 18:15:45 easysw Exp $".
# #
+3 -3
View File
@@ -1,5 +1,5 @@
# #
# "$Id: Makefile,v 1.10.2.6.2.13 2002/01/15 23:22:03 easysw Exp $" # "$Id: Makefile,v 1.10.2.6.2.14 2002/02/15 18:15:46 easysw Exp $"
# #
# FLUID makefile for the Fast Light Tool Kit (FLTK). # FLUID makefile for the Fast Light Tool Kit (FLTK).
# #
@@ -66,7 +66,7 @@ depend: $(CPPFILES)
include makedepend include makedepend
install: $(PROGRAM) install: $(PROGRAM)
echo "Installing FLUID..." echo "Installing FLUID in $(bindir)..."
-mkdir -p $(bindir) -mkdir -p $(bindir)
cp $(PROGRAM) $(bindir) cp $(PROGRAM) $(bindir)
strip $(bindir)/$(PROGRAM) strip $(bindir)/$(PROGRAM)
@@ -87,5 +87,5 @@ rebuild:
./fluid -c widget_panel.fl ./fluid -c widget_panel.fl
# #
# End of "$Id: Makefile,v 1.10.2.6.2.13 2002/01/15 23:22:03 easysw Exp $". # End of "$Id: Makefile,v 1.10.2.6.2.14 2002/02/15 18:15:46 easysw Exp $".
# #
+3 -4
View File
@@ -1,5 +1,5 @@
# #
# "$Id: Makefile,v 1.18.2.14.2.32 2002/01/17 23:43:49 easysw Exp $" # "$Id: Makefile,v 1.18.2.14.2.33 2002/02/15 18:15:46 easysw Exp $"
# #
# Library makefile for the Fast Light Tool Kit (FLTK). # Library makefile for the Fast Light Tool Kit (FLTK).
# #
@@ -282,7 +282,7 @@ gl_start.o: ../FL/mac.H ../FL/win32.H
################################################################ ################################################################
install: $(LIBNAME) $(DSONAME) $(GLLIBNAME) $(GLDSONAME) install: $(LIBNAME) $(DSONAME) $(GLLIBNAME) $(GLDSONAME)
echo "Installing libraries..." echo "Installing libraries in $(libdir)..."
-mkdir -p $(libdir) -mkdir -p $(libdir)
rm -f $(libdir)/$(LIBNAME) rm -f $(libdir)/$(LIBNAME)
-cp $(LIBNAME) $(GLLIBNAME) $(libdir) -cp $(LIBNAME) $(GLLIBNAME) $(libdir)
@@ -325,7 +325,6 @@ install: $(LIBNAME) $(DSONAME) $(GLLIBNAME) $(GLDSONAME)
chmod 755 $(libdir)/libfltk_gl.a; \ chmod 755 $(libdir)/libfltk_gl.a; \
fi fi
uninstall: uninstall:
echo "Uninstalling libraries..." echo "Uninstalling libraries..."
rm -f $(libdir)/$(LIBNAME) rm -f $(libdir)/$(LIBNAME)
@@ -353,5 +352,5 @@ uninstall:
# #
# End of "$Id: Makefile,v 1.18.2.14.2.32 2002/01/17 23:43:49 easysw Exp $". # End of "$Id: Makefile,v 1.18.2.14.2.33 2002/02/15 18:15:46 easysw Exp $".
# #