]> git.ipfire.org Git - thirdparty/cups.git/blame - test/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / test / Makefile
CommitLineData
ef416fc2 1#
bc44d920 2# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3#
4# IPP test makefile for the Common UNIX Printing System (CUPS).
5#
bc44d920 6# Copyright 2007 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
26#
27# Clean all object files...
28#
29
30clean:
31 $(RM) ipptest ipptest.o
32
33
34#
35# Update dependencies (without system header dependencies...)
36#
37
38depend:
39 makedepend -Y -I.. -fDependencies ipptest.c >/dev/null 2>&1
40
41
42#
43# Install all targets...
44#
45
fa73b229 46install: all
ef416fc2 47
48
757d2cad 49#
50# Unnstall all targets...
51#
52
53uninstall:
54
55
ef416fc2 56#
57# ipptest
58#
59
60ipptest: ipptest.o ../cups/libcups.a
61 echo Linking $@...
62 $(CC) $(LDFLAGS) -o ipptest ipptest.o ../cups/libcups.a \
f7deaa1a 63 $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
ef416fc2 64
65
66#
67# Dependencies...
68#
69
70include Dependencies
71
72
73#
bc44d920 74# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 75#