diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-09-06 11:20:53 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-09-06 11:20:53 +0000 |
| commit | d7fe9245b4f976d220469f321b100ffc217ccc59 (patch) | |
| tree | e95f1b3a5c7020f3ffca79bf4af6428f41bafdce /zlib | |
| parent | 98a0be39654892de753912045a36bd7f66eac31c (diff) | |
Install image header files in FL/images so that FLTK apps will use the
same headers as the image libraries FLTK uses.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3804 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'zlib')
| -rw-r--r-- | zlib/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/zlib/Makefile b/zlib/Makefile index 7b4372b5a..38e2036ca 100644 --- a/zlib/Makefile +++ b/zlib/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.1.2.4 2004/07/29 18:13:11 easysw Exp $" +# "$Id: Makefile,v 1.1.2.5 2004/09/06 11:20:53 easysw Exp $" # # GNU ZIP library makefile for the Fast Light Toolkit (FLTK). # @@ -63,6 +63,9 @@ install: $(LIBZ) $(RM) $(libdir)/libfltk_z$(LIBEXT) $(CP) $(LIBZ) $(libdir) $(RANLIB) $(libdir)/libfltk_z$(LIBEXT) + echo "Installing zlib headers in $(includedir)/FL/images..." + -$(MKDIR) $(includedir)/FL/images + $(CP) zconf.h zlib.h zutil.h $(includedir)/FL/images # @@ -72,6 +75,10 @@ install: $(LIBZ) uninstall: echo "Uninstalling libfltk_z$(LIBEXT) in $(libdir)..." $(RM) $(libdir)/libfltk_z$(LIBEXT) + echo "Uninstalling zlib headers in $(includedir)/FL/images..." + $(RM) $(includedir)/FL/images/zconf.h + $(RM) $(includedir)/FL/images/zlib.h + $(RM) $(includedir)/FL/images/zutil.h # @@ -97,5 +104,5 @@ $(OBJS): ../makeinclude # -# End of "$Id: Makefile,v 1.1.2.4 2004/07/29 18:13:11 easysw Exp $". +# End of "$Id: Makefile,v 1.1.2.5 2004/09/06 11:20:53 easysw Exp $". # |
