diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-07-06 00:18:49 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-07-06 00:18:49 +0000 |
| commit | 388a864ef72fee59c80239209c770878f27d92ab (patch) | |
| tree | 24ceae1b21196f8d8bb04151b79ac5233aa389c3 /png | |
| parent | c1525a2062342c6519f996200fb9ba4480a32307 (diff) | |
Makefile and configure script support for image libs.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3644 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'png')
| -rw-r--r-- | png/Makefile | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/png/Makefile b/png/Makefile index 57ec21ed7..844f3c256 100644 --- a/png/Makefile +++ b/png/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.1.2.1 2004/07/05 14:12:37 easysw Exp $" +# "$Id: Makefile,v 1.1.2.2 2004/07/06 00:18:48 easysw Exp $" # # PNG library makefile for the Fast Light Toolkit (FLTK). # @@ -51,6 +51,26 @@ clean: # +# Install everything... +# + +install: libpng.a + echo "Installing libpng.a in $(libdir)..." + -$(MKDIR) $(libdir) + $(RM) $(libdir)/libpng.a + -$(CP) libpng.a $(libdir) + + +# +# Uninstall everything... +# + +uninstall: + echo "Uninstalling libpng.a in $(libdir)..." + $(RM) $(libdir)/libpng.a + + +# # libpng.a # @@ -74,5 +94,5 @@ $(OBJS): ../makeinclude # -# End of "$Id: Makefile,v 1.1.2.1 2004/07/05 14:12:37 easysw Exp $". +# End of "$Id: Makefile,v 1.1.2.2 2004/07/06 00:18:48 easysw Exp $". # |
