]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - conf/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / conf / Makefile
... / ...
CommitLineData
1#
2# "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
3#
4# Configuration file makefile for the Common UNIX Printing System (CUPS).
5#
6# Copyright 1993-2006 by Easy Software Products.
7#
8# These coded instructions, statements, and computer programs are the
9# property of Easy Software Products and are protected by Federal
10# copyright law. Distribution and use rights are outlined in the file
11# "LICENSE.txt" which should have been included with this file. If this
12# file is missing or damaged please contact Easy Software Products
13# at:
14#
15# Attn: CUPS Licensing Information
16# Easy Software Products
17# 44141 Airport View Drive, Suite 204
18# Hollywood, Maryland 20636 USA
19#
20# Voice: (301) 373-9600
21# EMail: cups-info@cups.org
22# WWW: http://www.cups.org
23#
24
25include ../Makedefs
26
27#
28# Config files...
29#
30
31KEEP = cupsd.conf
32REPLACE = mime.convs mime.types
33
34
35#
36# Make everything...
37#
38
39all:
40
41
42#
43# Clean all config and object files...
44#
45
46clean:
47
48
49#
50# Dummy depend...
51#
52
53depend:
54
55
56#
57# Install files...
58#
59
60install: all
61 $(INSTALL_DIR) -m 755 $(SERVERROOT)
62 for file in $(KEEP); do \
63 if test -r $(SERVERROOT)/$$file ; then \
64 $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
65 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file.N || true; \
66 else \
67 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
68 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
69 fi ; \
70 done
71 $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
72 -chgrp $(CUPS_GROUP) $(SERVERROOT)/cupsd.conf.default
73 for file in $(REPLACE); do \
74 if test -r $(SERVERROOT)/$$file ; then \
75 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
76 fi ; \
77 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
78 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
79 done
80 -if test x$(PAMDIR) != x; then \
81 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(PAMDIR); \
82 if test -r $(BUILDROOT)$(PAMDIR)/cups/$(PAMFILE) ; then \
83 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
84 else \
85 $(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
86 fi ; \
87 fi
88
89
90#
91# Uninstall files...
92#
93
94uninstall:
95 for file in $(KEEP) $(REPLACE) cupsd.conf.default; do \
96 $(RM) $(SERVERROOT)/$$file; \
97 done
98 -$(RMDIR) $(SERVERROOT)
99 -if test x$(PAMDIR) != x; then \
100 $(RM) $(BUILDROOT)$(PAMDIR)/cups; \
101 $(RMDIR) $(BUILDROOT)$(PAMDIR); \
102 fi
103
104
105#
106# End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
107#