]> git.ipfire.org Git - thirdparty/cups.git/blob - test/Makefile
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / Applicatio...
[thirdparty/cups.git] / test / Makefile
1 #
2 # "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
3 #
4 # IPP test makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2008 by Apple Inc.
7 # Copyright 1997-2006 by Easy Software Products, all rights reserved.
8 #
9 # These coded instructions, statements, and computer programs are the
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/".
14 #
15
16 include ../Makedefs
17
18
19 #
20 # Make all targets...
21 #
22
23 all: ipptest
24
25
26 #
27 # Clean all object files...
28 #
29
30 clean:
31 $(RM) ipptest ipptest.o
32
33
34 #
35 # Update dependencies (without system header dependencies...)
36 #
37
38 depend:
39 makedepend -Y -I.. -fDependencies ipptest.c >/dev/null 2>&1
40
41
42 #
43 # Install all targets...
44 #
45
46 install: all install-data install-headers install-libs install-exec
47
48
49 #
50 # Install data files...
51 #
52
53 install-data:
54
55
56 #
57 # Install programs...
58 #
59
60 install-exec:
61
62
63 #
64 # Install headers...
65 #
66
67 install-headers:
68
69
70 #
71 # Install libraries...
72 #
73
74 install-libs:
75
76
77 #
78 # Unnstall all targets...
79 #
80
81 uninstall:
82
83
84 #
85 # ipptest
86 #
87
88 ipptest: ipptest.o ../cups/libcups.a
89 echo Linking $@...
90 $(CC) $(LDFLAGS) -o ipptest ipptest.o ../cups/libcups.a \
91 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
92
93
94 #
95 # Dependencies...
96 #
97
98 include Dependencies
99
100
101 #
102 # End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
103 #