]> git.ipfire.org Git - thirdparty/cups.git/blame - Makefile
Import cups.org releases
[thirdparty/cups.git] / Makefile
CommitLineData
8ef505f3
MS
1#
2# "$Id$"
3#
4# Top-level Makefile for the Common UNIX Printing System (CUPS).
5#
6# Copyright 1997-1999 by Easy Software Products, all rights reserved.
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-3111 USA
19#
20# Voice: (301) 373-9603
21# EMail: cups-info@cups.org
22# WWW: http://www.cups.org
23#
24
25include Makedefs
26
27#
28# Directories to make...
29#
30
31DIRS = cups backend berkeley cgi-bin filter man pstoraster \
32 scheduler systemv
33
34#
35# Make all targets...
36#
37
38all:
39 for dir in $(DIRS); do\
40 echo Making all in $$dir... ;\
41 (cd $$dir; make);\
42 done
43
44#
45# Remove object and target files...
46#
47
48clean:
49 for dir in $(DIRS); do\
50 echo Cleaning in $$dir... ;\
51 (cd $$dir; make clean);\
52 done
53
54#
55# Install object and target files...
56#
57
58install:
59 for dir in $(DIRS); do\
60 echo Installing in $$dir... ;\
61 (cd $$dir; make install);\
62 done
63 echo Installing in conf...
64 (cd conf; make install)
65 echo Installing in data...
66 (cd data; make install)
67 echo Installing in doc...
68 (cd doc; make install)
69 echo Installing in fonts...
70 (cd fonts; make install)
71 echo Installing in ppd...
72 (cd ppd; make install)
73
74#
75# End of "$Id$".
76#