]> git.ipfire.org Git - thirdparty/cups.git/blame - conf/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / conf / Makefile
CommitLineData
ef416fc2 1#
bd7854cb 2# "$Id: Makefile 5126 2006-02-17 16:11:30Z mike $"
ef416fc2 3#
4# Configuration file makefile for the Common UNIX Printing System (CUPS).
5#
fa73b229 6# Copyright 1993-2006 by Easy Software Products.
ef416fc2 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
fa73b229 31KEEP = client.conf cupsd.conf
ef416fc2 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# Install files...
51#
52
fa73b229 53install: all
bd7854cb 54 $(INSTALL_DIR) -m 755 $(SERVERROOT)
ef416fc2 55 for file in $(KEEP); do \
56 if test -r $(SERVERROOT)/$$file ; then \
09ec0018 57 $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
bd7854cb 58 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file.N || true; \
ef416fc2 59 else \
09ec0018 60 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
bd7854cb 61 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
ef416fc2 62 fi ; \
63 done
09ec0018 64 $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
bd7854cb 65 -chgrp $(CUPS_GROUP) $(SERVERROOT)/cupsd.conf.default
ef416fc2 66 for file in $(REPLACE); do \
67 if test -r $(SERVERROOT)/$$file ; then \
68 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
69 fi ; \
09ec0018 70 $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
bd7854cb 71 chgrp $(CUPS_GROUP) $(SERVERROOT)/$$file || true; \
ef416fc2 72 done
73 -if test x$(PAMDIR) != x$(BUILDROOT); then \
bd7854cb 74 $(INSTALL_DIR) -m 755 $(PAMDIR); \
ef416fc2 75 if test -r $(PAMDIR)/cups/$(PAMFILE) ; then \
76 $(INSTALL_DATA) $(PAMFILE) $(PAMDIR)/cups.N ; \
77 else \
78 $(INSTALL_DATA) $(PAMFILE) $(PAMDIR)/cups ; \
79 fi ; \
80 fi
81
82
83#
bd7854cb 84# End of "$Id: Makefile 5126 2006-02-17 16:11:30Z mike $".
ef416fc2 85#