]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - templates/Makefile
License change: Apache License, Version 2.0.
[thirdparty/cups.git] / templates / Makefile
index e1b5babc76c1eb31ce40d22be5693ad0a84a8a7f..59720bd686f989f57f86fa371c5773de89d580ba 100644 (file)
@@ -1,25 +1,10 @@
 #
-# "$Id: Makefile 5878 2006-08-24 15:55:42Z mike $"
+# Template makefile for CUPS.
 #
-#   Template makefile for the Common UNIX Printing System (CUPS).
+# Copyright 2007-2017 by Apple Inc.
+# Copyright 1993-2007 by Easy Software Products.
 #
-#   Copyright 1993-2006 by Easy Software Products.
-#
-#   These coded instructions, statements, and computer programs are the
-#   property of Easy Software Products 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 missing or damaged please contact Easy Software Products
-#   at:
-#
-#       Attn: CUPS Licensing Information
-#       Easy Software Products
-#       44141 Airport View Drive, Suite 204
-#       Hollywood, Maryland 20636 USA
-#
-#       Voice: (301) 373-9600
-#       EMail: cups-info@cups.org
-#         WWW: http://www.cups.org
+# Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
 #
 
 include ../Makedefs
@@ -37,6 +22,7 @@ FILES =       \
                choose-model.tmpl \
                choose-serial.tmpl \
                choose-uri.tmpl \
+               class.tmpl \
                class-added.tmpl \
                class-confirm.tmpl \
                class-deleted.tmpl \
@@ -44,11 +30,13 @@ FILES       =       \
                class-modified.tmpl \
                classes.tmpl \
                classes-header.tmpl \
+               command.tmpl \
                edit-config.tmpl \
                error.tmpl \
                error-op.tmpl \
                header.tmpl \
                help-header.tmpl \
+               help-trailer.tmpl \
                help-printable.tmpl \
                job-cancel.tmpl \
                job-hold.tmpl \
@@ -58,7 +46,7 @@ FILES =       \
                job-restart.tmpl \
                jobs.tmpl \
                jobs-header.tmpl \
-               maintenance.tmpl \
+               list-available-printers.tmpl \
                modify-class.tmpl \
                modify-printer.tmpl \
                norestart.tmpl \
@@ -69,15 +57,16 @@ FILES       =       \
                option-pickone.tmpl \
                option-trailer.tmpl \
                pager.tmpl \
+               printer.tmpl \
                printer-accept.tmpl \
                printer-added.tmpl \
+               printer-cancel-jobs.tmpl \
                printer-configured.tmpl \
                printer-confirm.tmpl \
                printer-default.tmpl \
                printer-deleted.tmpl \
                printer-jobs-header.tmpl \
                printer-modified.tmpl \
-               printer-purge.tmpl \
                printer-reject.tmpl \
                printer-start.tmpl \
                printer-stop.tmpl \
@@ -101,6 +90,20 @@ FILES       =       \
 all:
 
 
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all config and object files...
 #
@@ -116,10 +119,17 @@ depend:
 
 
 #
-# Install files...
+# Install all targets...
+#
+
+install:       all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
 #
 
-install: all $(INSTALL_LANGUAGES)
+install-data: $(INSTALL_LANGUAGES)
        $(INSTALL_DIR) -m 755 $(DATADIR)/templates
        for file in $(FILES); do \
                $(INSTALL_DATA) $$file $(DATADIR)/templates; \
@@ -127,14 +137,37 @@ install: all $(INSTALL_LANGUAGES)
 
 install-languages:
        for lang in $(LANGUAGES); do \
-               $(INSTALL_DIR) -m 755 $(DATADIR)/templates/$$lang; \
-               for file in $(FILES); do \
-                       if test -f $$lang/$$file; then \
-                               $(INSTALL_DATA) $$lang/$$file $(DATADIR)/templates/$$lang; \
-                       fi \
-               done \
+               if test -d $$lang; then \
+                       $(INSTALL_DIR) -m 755 $(DATADIR)/templates/$$lang; \
+                       for file in $(FILES); do \
+                               $(INSTALL_DATA) $$lang/$$file $(DATADIR)/templates/$$lang >/dev/null 2>&1 || true; \
+                       done \
+               fi \
        done
 
+install-langbundle:
+
+
+#
+# Install programs...
+#
+
+install-exec:
+
+
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
+
 
 #
 # Uninstall files...
@@ -154,7 +187,4 @@ uninstall-languages:
                $(RMDIR) $(DATADIR)/templates/$$lang; \
        done
 
-
-#
-# End of "$Id: Makefile 5878 2006-08-24 15:55:42Z mike $".
-#
+uninstall-langbundle: