1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
#
# Template makefile for CUPS.
#
# Copyright © 2020-2024 by OpenPrinting.
# Copyright 2007-2017 by Apple Inc.
# Copyright 1993-2007 by Easy Software Products.
#
# Licensed under Apache License v2.0. See the file "LICENSE" for more information.
#
include ../Makedefs
#
# Template files...
#
FILES = \
add-class.tmpl \
add-printer.tmpl \
admin.tmpl \
choose-device.tmpl \
choose-make.tmpl \
choose-model.tmpl \
choose-serial.tmpl \
choose-uri.tmpl \
class.tmpl \
class-added.tmpl \
class-confirm.tmpl \
class-deleted.tmpl \
class-jobs-header.tmpl \
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 \
job-move.tmpl \
job-moved.tmpl \
job-release.tmpl \
job-restart.tmpl \
jobs.tmpl \
jobs-header.tmpl \
list-available-printers.tmpl \
modify-class.tmpl \
modify-printer.tmpl \
norestart.tmpl \
option-boolean.tmpl \
option-conflict.tmpl \
option-header.tmpl \
option-pickmany.tmpl \
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-reject.tmpl \
printer-start.tmpl \
printer-stop.tmpl \
printers.tmpl \
printers-header.tmpl \
restart.tmpl \
search.tmpl \
set-printer-options-header.tmpl \
set-printer-options-trailer.tmpl \
test-page.tmpl \
trailer.tmpl \
users.tmpl
#
# Make everything...
#
all:
#
# Make library targets...
#
libs:
#
# Make unit tests...
#
unittests:
#
# Clean all config and object files...
#
clean:
#
# Dummy depend...
#
depend:
#
# Install all targets...
#
install: all install-data install-headers install-libs install-exec
#
# Install data files...
#
install-data:
for lang in $(LANGUAGES); do \
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_DIR) -m 755 $(DATADIR)/templates
for file in $(FILES); do \
$(INSTALL_DATA) $$file $(DATADIR)/templates; \
done
#
# Install programs...
#
install-exec:
#
# Install headers...
#
install-headers:
#
# Install libraries...
#
install-libs:
#
# Uninstall files...
#
uninstall:
for lang in $(LANGUAGES); do \
for file in $(FILES); do \
$(RM) $(DATADIR)/templates/$$lang/$$file; \
done \
$(RMDIR) $(DATADIR)/templates/$$lang; \
done
for file in $(FILES); do \
$(RM) $(DATADIR)/templates/$$file; \
done
-$(RMDIR) $(DATADIR)/templates
|