]> git.ipfire.org Git - thirdparty/cups.git/blame - backend/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / backend / Makefile
CommitLineData
ef416fc2 1#
bd7854cb 2# "$Id: Makefile 5131 2006-02-18 05:31:36Z mike $"
ef416fc2 3#
4# Backend makefile for the Common UNIX Printing System (CUPS).
5#
6# Copyright 1997-2006 by Easy Software Products, all rights reserved.
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# This file is subject to the Apple OS-Developed Software exception.
25#
26
27include ../Makedefs
28
bd7854cb 29RBACKENDS = ipp lpd
30UBACKENDS = parallel scsi serial socket usb
e00b005a 31TARGETS = betest test1284 $(RBACKENDS) $(UBACKENDS)
ef416fc2 32OBJS = betest.o ipp.o lpd.o parallel.o scsi.o \
33 serial.o socket.o test1284.o usb.o
34
35
36#
37# Make all targets...
38#
39
40all: $(TARGETS)
41
42
43#
44# Clean all object files...
45#
46
47clean:
48 $(RM) $(OBJS) $(TARGETS) http
49
50
51#
52# Update dependencies (without system header dependencies...)
53#
54
55depend:
56 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
57
58
59#
60# Install all targets...
61#
62
63install: all
bd7854cb 64 $(INSTALL_DIR) -m 755 $(SERVERBIN)/backend
e00b005a 65 for file in $(RBACKENDS); do \
66 $(LIBTOOL) $(INSTALL) -m 700 $$file $(SERVERBIN)/backend; \
67 done
68 for file in $(UBACKENDS); do \
ef416fc2 69 $(INSTALL_BIN) $$file $(SERVERBIN)/backend; \
70 done
71 $(RM) $(SERVERBIN)/backend/http
72 $(LN) ipp $(SERVERBIN)/backend/http
73
74
75#
76# betest
77#
78
79betest: betest.o ../cups/$(LIBCUPS)
80 echo Linking $@...
81 $(CC) $(LDFLAGS) -o betest betest.o $(LIBS)
82
83
84#
85# test1284
86#
87
88test1284: test1284.o ../cups/libcups.a
89 echo Linking $@...
4400e98d 90 $(CC) $(LDFLAGS) -o test1284 test1284.o ../cups/libcups.a \
91 $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
ef416fc2 92
93
94#
95# ieee1394
96#
97
98ieee1394: ieee1394.o ieee1394-linux.o
99 echo Linking $@...
100 $(CC) $(LDFLAGS) -o ieee1394 ieee1394.o ieee1394-linux.o -lraw1394 $(LIBS)
101
102ieee1394.o: ieee1394.h
103ieee1394-linux.o: ieee1394.h
104
105
106#
107# ipp
108#
109
110ipp: ipp.o ../cups/$(LIBCUPS)
111 echo Linking $@...
112 $(CC) $(LDFLAGS) -o ipp ipp.o $(LIBS)
113 $(RM) http
114 $(LN) ipp http
115
116
117#
118# lpd
119#
120
121lpd: lpd.o ../cups/$(LIBCUPS)
122 echo Linking $@...
123 $(CC) $(LDFLAGS) -o lpd lpd.o $(LIBS)
124
125
126#
127# parallel
128#
129
130parallel: parallel.o ../cups/$(LIBCUPS)
131 echo Linking $@...
132 $(CC) $(LDFLAGS) -o parallel parallel.o $(LIBS)
133
134
135#
136# scsi
137#
138
139scsi: scsi.o ../cups/$(LIBCUPS)
140 echo Linking $@...
141 $(CC) $(LDFLAGS) -o scsi scsi.o $(LIBS)
142
143scsi.o: scsi.c scsi-irix.c scsi-linux.c
144
145
146#
147# serial
148#
149
150serial: serial.o ../cups/$(LIBCUPS)
151 echo Linking $@...
152 $(CC) $(LDFLAGS) -o serial serial.o $(BACKLIBS) $(LIBS)
153
154
155#
156# socket
157#
158
159socket: socket.o ../cups/$(LIBCUPS)
160 echo Linking $@...
161 $(CC) $(LDFLAGS) -o socket socket.o $(LIBS)
162
163
164#
165# usb
166#
167
168usb: usb.o ../cups/$(LIBCUPS)
169 echo Linking $@...
170 $(CC) $(LDFLAGS) -o usb usb.o $(BACKLIBS) $(LIBS)
171usb.o: usb.c usb-darwin.c usb-unix.c ieee1284.c
172
173
174#
175# Dependencies...
176#
177
178include Dependencies
179
180
181#
bd7854cb 182# End of "$Id: Makefile 5131 2006-02-18 05:31:36Z mike $".
ef416fc2 183#