summaryrefslogtreecommitdiff
path: root/jpeg
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 /jpeg
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 'jpeg')
-rw-r--r--jpeg/Makefile24
1 files changed, 22 insertions, 2 deletions
diff --git a/jpeg/Makefile b/jpeg/Makefile
index b02b1d66a..eb3e592bb 100644
--- a/jpeg/Makefile
+++ b/jpeg/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.1.2.1 2004/07/05 14:12:36 easysw Exp $"
+# "$Id: Makefile,v 1.1.2.2 2004/07/06 00:18:48 easysw Exp $"
#
# JPEG library makefile for the Fast Light Toolkit (FLTK).
#
@@ -59,6 +59,26 @@ clean:
#
+# Install everything...
+#
+
+install:
+ echo "Installing libjpeg.a in $(libdir)..."
+ -$(MKDIR) $(libdir)
+ $(RM) $(libdir)/libjpeg.a
+ -$(CP) libjpeg.a $(libdir)
+
+
+#
+# Uninstall everything...
+#
+
+uninstall:
+ echo "Uninstalling libjpeg.a in $(libdir)..."
+ $(RM) $(libdir)/libjpeg.a
+
+
+#
# libjpeg.a
#
@@ -81,5 +101,5 @@ include makedepend
$(OBJS): ../makeinclude
#
-# End of "$Id: Makefile,v 1.1.2.1 2004/07/05 14:12:36 easysw Exp $".
+# End of "$Id: Makefile,v 1.1.2.2 2004/07/06 00:18:48 easysw Exp $".
#