]> git.ipfire.org Git - thirdparty/cups.git/blame - test/Makefile
Merge changes from 1.1.x into 1.2 devel.
[thirdparty/cups.git] / test / Makefile
CommitLineData
74bcc47c 1#
753453e4 2# "$Id: Makefile,v 1.2.2.1 2001/12/26 16:52:58 mike Exp $"
74bcc47c 3#
4# IPP test makefile for the Common UNIX Printing System (CUPS).
5#
d2935a0f 6# Copyright 1997-2001 by Easy Software Products, all rights reserved.
74bcc47c 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#
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# Install all targets...
45#
46
47install:
48
49
50#
51# ipptest
52#
53
54ipptest: ipptest.o ../cups/$(LIBCUPS)
55 echo Linking $@...
56 $(CC) $(LDFLAGS) -o ipptest ipptest.o $(LIBS)
57
58ipptest.o: ../cups/cups.h ../Makedefs
59
60
61#
753453e4 62# purify target for doing tests on the CUPS API...
63#
64
65purify: ipptest.o ../cups/$(LIBCUPS)
66 echo Linking $@...
67 purify $(CC) $(LDFLAGS) -o ipptest.pure ipptest.o $(LIBS)
68
69
70#
71# End of "$Id: Makefile,v 1.2.2.1 2001/12/26 16:52:58 mike Exp $".
74bcc47c 72#