summaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-17 22:12:14 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-17 22:12:14 +0000
commit28b9d139c05c6edd6ebc25f466792b8e806d0fa6 (patch)
tree163559263f51a67069281ee38f8028aa68407b55 /examples/Makefile
parent6e8b116d7f9487b7ffec4be46bbbffd3dd13b863 (diff)
downloadcups-28b9d139c05c6edd6ebc25f466792b8e806d0fa6.tar.gz
Merge changes from CUPS 1.4svn-r8067 (tentative CUPS 1.4b1)
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1021 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile128
1 files changed, 128 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile
new file mode 100644
index 000000000..928d71c15
--- /dev/null
+++ b/examples/Makefile
@@ -0,0 +1,128 @@
+#
+# "$Id$"
+#
+# PPD compiler example makefile for the Common UNIX Printing System (CUPS).
+#
+# Copyright 2007-2008 by Apple Inc.
+# Copyright 2002-2005 by Easy Software Products.
+#
+# These coded instructions, statements, and computer programs are the
+# property of Apple Inc. and are protected by Federal copyright
+# law. Distribution and use rights are outlined in the file "LICENSE.txt"
+# which should have been included with this file. If this file is
+# file is missing or damaged, see the license at "http://www.cups.org/".
+#
+
+#
+# Include standard definitions...
+#
+
+include ../Makedefs
+
+
+#
+# Examples...
+#
+
+EXAMPLES = \
+ color.drv \
+ constraint.drv \
+ custom.drv \
+ grouping.drv \
+ laserjet-basic.drv \
+ laserjet-pjl.drv \
+ minimum.drv \
+ postscript.drv \
+ r300-basic.drv \
+ r300-colorman.drv \
+ r300-remote.drv
+
+
+#
+# Make everything...
+#
+
+all:
+
+
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
+#
+# Clean everything...
+#
+
+clean:
+
+
+#
+# Dummy depend...
+#
+
+depend:
+
+
+#
+# Install all targets...
+#
+
+install: all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
+#
+
+install-data:
+ $(INSTALL_DIR) $(DATADIR)/examples
+ for file in $(EXAMPLES); do \
+ $(INSTALL_DATA) $$file $(DATADIR)/examples; \
+ done
+
+
+#
+# Install programs...
+#
+
+install-exec:
+
+
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
+
+
+#
+# Uninstall files...
+#
+
+uninstall:
+ for file in $(EXAMPLES); do \
+ $(RM) $(DATADIR)/examples/$$file; \
+ done
+ -$(RMDIR) $(DATADIR)/examples
+
+
+#
+# End of "$Id$".
+#