]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - templates/Makefile
License change: Apache License, Version 2.0.
[thirdparty/cups.git] / templates / Makefile
index 2c16f8977d2f62cc1715c13e691a2706b6e56915..59720bd686f989f57f86fa371c5773de89d580ba 100644 (file)
@@ -1,25 +1,10 @@
 #
-# "$Id$"
+# 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,9 +46,10 @@ FILES        =       \
                job-restart.tmpl \
                jobs.tmpl \
                jobs-header.tmpl \
-               maintenance.tmpl \
+               list-available-printers.tmpl \
                modify-class.tmpl \
                modify-printer.tmpl \
+               norestart.tmpl \
                option-boolean.tmpl \
                option-conflict.tmpl \
                option-header.tmpl \
@@ -68,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 \
@@ -100,6 +90,20 @@ FILES       =       \
 all:
 
 
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all config and object files...
 #
@@ -115,41 +119,72 @@ depend:
 
 
 #
-# Install files...
+# Install all targets...
 #
 
-install: all
+install:       all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
+#
+
+install-data: $(INSTALL_LANGUAGES)
        $(INSTALL_DIR) -m 755 $(DATADIR)/templates
        for file in $(FILES); do \
                $(INSTALL_DATA) $$file $(DATADIR)/templates; \
        done
+
+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...
 #
 
-uninstall:
+uninstall: $(UNINSTALL_LANGUAGES)
        for file in $(FILES); do \
                $(RM) $(DATADIR)/templates/$$file; \
        done
+       -$(RMDIR) $(DATADIR)/templates
+
+uninstall-languages:
        for lang in $(LANGUAGES); do \
                for file in $(FILES); do \
                        $(RM) $(DATADIR)/templates/$$lang/$$file; \
                done \
                $(RMDIR) $(DATADIR)/templates/$$lang; \
        done
-       -$(RMDIR) $(DATADIR)/templates
-
 
-#
-# End of "$Id$".
-#
+uninstall-langbundle: