]> git.ipfire.org Git - thirdparty/cups.git/blame - ppd/Makefile
Merge changes from 1.1.x into 1.2 devel.
[thirdparty/cups.git] / ppd / Makefile
CommitLineData
ba8a42d9 1#
753453e4 2# "$Id: Makefile,v 1.8.2.2 2001/12/26 16:52:47 mike Exp $"
ba8a42d9 3#
4# PPD file makefile for the Common UNIX Printing System (CUPS).
5#
d2935a0f 6# Copyright 1993-2001 by Easy Software Products.
ba8a42d9 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# PPD files...
29#
30
753453e4 31FILES = deskjet.ppd deskjet2.ppd dymo.ppd epson9.ppd epson24.ppd \
32 laserjet.ppd okidata9.ppd okidat24.ppd stcolor.ppd \
33 stcolor2.ppd stphoto.ppd stphoto2.ppd
ba8a42d9 34
b5cb0608 35
ba8a42d9 36#
37# Make everything...
38#
39
40all:
41
b5cb0608 42
ba8a42d9 43#
44# Clean all config and object files...
45#
46
47clean:
48
b5cb0608 49
ba8a42d9 50#
51# Install files...
52#
53
54install:
753453e4 55 $(INSTALL_DIR) $(DATADIR)/model
56 for file in $(FILES); do \
57 $(INSTALL_DATA) $$file $(DATADIR)/model; \
58 done
ba8a42d9 59
b5cb0608 60
ba8a42d9 61#
753453e4 62# End of "$Id: Makefile,v 1.8.2.2 2001/12/26 16:52:47 mike Exp $".
ba8a42d9 63#