summaryrefslogtreecommitdiff
path: root/data/Makefile
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-02-16 00:27:39 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-02-16 00:27:39 +0000
commitac884b6a1c1c3dfe73ef7e770d91ea225002a2c3 (patch)
tree09fb84a85bf308c6a6dd45f7293c64c40fe5acdc /data/Makefile
parent5a738aeaea5c4dd9384a8601cc5c99be683b69ca (diff)
downloadcups-ac884b6a1c1c3dfe73ef7e770d91ea225002a2c3.tar.gz
Merge CUPS 1.4svn-r7319.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@624 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'data/Makefile')
-rw-r--r--data/Makefile20
1 files changed, 19 insertions, 1 deletions
diff --git a/data/Makefile b/data/Makefile
index f060e382d..85fb590af 100644
--- a/data/Makefile
+++ b/data/Makefile
@@ -3,7 +3,7 @@
#
# Datafile makefile for the Common UNIX Printing System (CUPS).
#
-# Copyright 2007 by Apple Inc.
+# Copyright 2007-2008 by Apple Inc.
# Copyright 1993-2006 by Easy Software Products.
#
# These coded instructions, statements, and computer programs are the
@@ -74,6 +74,16 @@ DATAFILES = \
psglyphs \
testprint.ps
+PPDCFILES = \
+ epson.h \
+ escp.h \
+ font.defs \
+ hp.h \
+ label.h \
+ media.defs \
+ pcl.h \
+ raster.defs
+
#
# Make everything...
@@ -117,6 +127,10 @@ install: all
for file in $(DATAFILES); do \
$(INSTALL_DATA) $$file $(DATADIR)/data; \
done
+ $(INSTALL_DIR) -m 755 $(DATADIR)/ppdc
+ for file in $(PPDCFILES); do \
+ $(INSTALL_DATA) $$file $(DATADIR)/ppdc; \
+ done
$(INSTALL_DIR) -m 755 $(DATADIR)/profiles
@@ -137,7 +151,11 @@ uninstall:
for file in $(DATAFILES); do \
$(RM) $(DATADIR)/data/$$file; \
done
+ for file in $(PPDCFILES); do \
+ $(RM) $(DATADIR)/ppdc/$$file; \
+ done
-$(RMDIR) $(DATADIR)/profiles
+ -$(RMDIR) $(DATADIR)/ppdc
-$(RMDIR) $(DATADIR)/data
-$(RMDIR) $(DATADIR)/charsets
-$(RMDIR) $(DATADIR)/charmaps