summaryrefslogtreecommitdiff
path: root/zlib/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2004-07-06 00:18:49 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2004-07-06 00:18:49 +0000
commit388a864ef72fee59c80239209c770878f27d92ab (patch)
tree24ceae1b21196f8d8bb04151b79ac5233aa389c3 /zlib/Makefile
parentc1525a2062342c6519f996200fb9ba4480a32307 (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 'zlib/Makefile')
-rw-r--r--zlib/Makefile24
1 files changed, 22 insertions, 2 deletions
diff --git a/zlib/Makefile b/zlib/Makefile
index ff505e2fd..57a382285 100644
--- a/zlib/Makefile
+++ b/zlib/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:49 easysw Exp $"
#
# GNU ZIP library makefile for the Fast Light Toolkit (FLTK).
#
@@ -52,6 +52,26 @@ clean:
#
+# Install everything...
+#
+
+install: libz.a
+ echo "Installing libz.a in $(libdir)..."
+ -$(MKDIR) $(libdir)
+ $(RM) $(libdir)/libz.a
+ -$(CP) libz.a $(libdir)
+
+
+#
+# Uninstall everything...
+#
+
+uninstall:
+ echo "Uninstalling libz.a in $(libdir)..."
+ $(RM) $(libdir)/libz.a
+
+
+#
# libz.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:49 easysw Exp $".
#