]> git.ipfire.org Git - thirdparty/cups.git/blame - test/Makefile
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / test / Makefile
CommitLineData
ef416fc2 1#
75bd9771 2# "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $"
ef416fc2 3#
4# IPP test makefile for the Common UNIX Printing System (CUPS).
5#
50fe7201 6# Copyright 2007-2008 by Apple Inc.
757d2cad 7# Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 8#
9# These coded instructions, statements, and computer programs are the
bc44d920 10# property of Apple Inc. and are protected by Federal copyright
11# law. Distribution and use rights are outlined in the file "LICENSE.txt"
12# which should have been included with this file. If this file is
13# file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14#
15
16include ../Makedefs
17
18
19#
20# Make all targets...
21#
22
23all: ipptest
24
25
c9fc04c6
MS
26#
27# Make library targets...
28#
29
30libs:
31
32
5f64df29
MS
33#
34# Make unit tests...
35#
36
37unittests:
38
39
ef416fc2 40#
41# Clean all object files...
42#
43
44clean:
45 $(RM) ipptest ipptest.o
46
47
48#
49# Update dependencies (without system header dependencies...)
50#
51
52depend:
53 makedepend -Y -I.. -fDependencies ipptest.c >/dev/null 2>&1
54
55
56#
57# Install all targets...
58#
59
50fe7201
MS
60install: all install-data install-headers install-libs install-exec
61
62
63#
64# Install data files...
65#
66
67install-data:
68
69
70#
71# Install programs...
72#
73
74install-exec:
75
76
77#
78# Install headers...
79#
80
81install-headers:
82
83
84#
85# Install libraries...
86#
87
88install-libs:
ef416fc2 89
90
757d2cad 91#
92# Unnstall all targets...
93#
94
95uninstall:
96
97
ef416fc2 98#
99# ipptest
100#
101
102ipptest: ipptest.o ../cups/libcups.a
103 echo Linking $@...
104 $(CC) $(LDFLAGS) -o ipptest ipptest.o ../cups/libcups.a \
f7deaa1a 105 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
ef416fc2 106
107
108#
109# Dependencies...
110#
111
112include Dependencies
113
114
115#
75bd9771 116# End of "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $".
ef416fc2 117#