]> git.ipfire.org Git - thirdparty/cups.git/blob - conf/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / conf / Makefile
1 #
2 # "$Id: Makefile 4664 2005-09-17 22:56:56Z mike $"
3 #
4 # Configuration file makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2005 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
25 include ../Makedefs
26
27 #
28 # Config files...
29 #
30
31 KEEP = classes.conf client.conf cupsd.conf printers.conf
32 REPLACE = mime.convs mime.types
33
34
35 #
36 # Make everything...
37 #
38
39 all:
40
41
42 #
43 # Clean all config and object files...
44 #
45
46 clean:
47
48
49 #
50 # Install files...
51 #
52
53 install:
54 $(INSTALL_DIR) $(SERVERROOT)
55 for file in $(KEEP); do \
56 if test -r $(SERVERROOT)/$$file ; then \
57 $(INSTALL_DATA) $$file $(SERVERROOT)/$$file.N ; \
58 else \
59 $(INSTALL_DATA) $$file $(SERVERROOT) ; \
60 fi ; \
61 done
62 for file in $(REPLACE); do \
63 if test -r $(SERVERROOT)/$$file ; then \
64 $(MV) $(SERVERROOT)/$$file $(SERVERROOT)/$$file.O ; \
65 fi ; \
66 $(INSTALL_DATA) $$file $(SERVERROOT) ; \
67 done
68 -if test x$(PAMDIR) != x$(BUILDROOT); then \
69 $(INSTALL_DIR) $(PAMDIR); \
70 if test -r $(PAMDIR)/cups/$(PAMFILE) ; then \
71 $(INSTALL_DATA) $(PAMFILE) $(PAMDIR)/cups.N ; \
72 else \
73 $(INSTALL_DATA) $(PAMFILE) $(PAMDIR)/cups ; \
74 fi ; \
75 fi
76
77
78 #
79 # End of "$Id: Makefile 4664 2005-09-17 22:56:56Z mike $".
80 #