]> git.ipfire.org Git - thirdparty/cups.git/blame - test/Makefile
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / test / Makefile
CommitLineData
ef416fc2 1#
c07d5b2d 2# "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $"
ef416fc2 3#
4# IPP test makefile for the Common UNIX Printing System (CUPS).
5#
757d2cad 6# Copyright 1997-2006 by Easy Software Products, all rights reserved.
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#
29# Make all targets...
30#
31
32all: ipptest
33
34
35#
36# Clean all object files...
37#
38
39clean:
40 $(RM) ipptest ipptest.o
41
42
43#
44# Update dependencies (without system header dependencies...)
45#
46
47depend:
48 makedepend -Y -I.. -fDependencies ipptest.c >/dev/null 2>&1
49
50
51#
52# Install all targets...
53#
54
fa73b229 55install: all
ef416fc2 56
57
757d2cad 58#
59# Unnstall all targets...
60#
61
62uninstall:
63
64
ef416fc2 65#
66# ipptest
67#
68
69ipptest: ipptest.o ../cups/libcups.a
70 echo Linking $@...
71 $(CC) $(LDFLAGS) -o ipptest ipptest.o ../cups/libcups.a \
72 $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
73
74
75#
76# Dependencies...
77#
78
79include Dependencies
80
81
82#
c07d5b2d 83# End of "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $".
ef416fc2 84#