summaryrefslogtreecommitdiff
path: root/png/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'png/Makefile')
-rw-r--r--png/Makefile24
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 $".
#