]> git.saurik.com Git - apple/mdnsresponder.git/blob - mDNSPosix/Makefile
mDNSResponder-258.21.tar.gz
[apple/mdnsresponder.git] / mDNSPosix / Makefile
1 # -*- tab-width: 4 -*-
2 #
3 # Copyright (c) 2002-2004, Apple Computer, Inc. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are met:
7 #
8 # 1. Redistributions of source code must retain the above copyright notice,
9 # this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright notice,
11 # this list of conditions and the following disclaimer in the documentation
12 # and/or other materials provided with the distribution.
13 # 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of its
14 # contributors may be used to endorse or promote products derived from this
15 # software without specific prior written permission.
16 #
17 # THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 # DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #
28 # IMPORTANT NOTE: This is a Makefile for *GNU make*
29 # On some systems, a different program may be the default "make" command.
30 # If "make os=xxx" gives lots of errors like "Missing dependency operator",
31 # then try typing "gmake os=xxx" instead.
32 #
33 # This Makefile builds an mDNSResponder daemon and a libdns_sd.so shared library
34 # for Linux. It also builds several example programs for embedded systems.
35 #
36 # Make with no arguments to build all production targets.
37 # 'make DEBUG=1' to build debugging targets.
38 # 'make clean' or 'make clean DEBUG=1' to delete prod/debug objects & targets
39 # 'sudo make install [DEBUG=1]' to install mdnsd daemon and libdns_sd.
40 #
41 # Notes:
42 # $@ means "The file name of the target of the rule"
43 # $< means "The name of the first prerequisite"
44 # $* means "The stem with which an implicit rule matches"
45 # $+ means "The names of all the prerequisites, with spaces between them, exactly as given"
46 # For more magic automatic variables, see
47 # <http://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html>
48
49 #############################################################################
50
51 LIBVERS = 1
52
53 COREDIR = ../mDNSCore
54 SHAREDDIR ?= ../mDNSShared
55 JDK = /usr/jdk
56
57 CC = @cc
58 BISON = @bison
59 FLEX = @flex
60 LD = ld -shared
61 CP = cp
62 RM = rm
63 LN = ln -s -f
64 CFLAGS_COMMON = -I$(COREDIR) -I$(SHAREDDIR) -I$(OBJDIR) -fwrapv -W -Wall -DPID_FILE=\"/var/run/mdnsd.pid\" -DMDNS_UDS_SERVERPATH=\"/var/run/mdnsd\"
65 CFLAGS_PTHREAD =
66 LINKOPTS =
67 LINKOPTS_PTHREAD = -lpthread
68 LDSUFFIX = so
69 JAVACFLAGS_OS = -fPIC -shared -ldns_sd
70
71 # Set up diverging paths for debug vs. prod builds
72 DEBUG=0
73 ifeq ($(DEBUG),1)
74 CFLAGS_DEBUG = -g -DMDNS_DEBUGMSGS=2
75 OBJDIR = objects/debug
76 BUILDDIR = build/debug
77 STRIP = echo
78 else
79 # We use -Os for two reasons:
80 # 1. We want to make small binaries, suitable for putting into hardware devices
81 # 2. Some of the code analysis warnings only work when some form of optimization is enabled
82 CFLAGS_DEBUG = -Os -DMDNS_DEBUGMSGS=0
83 OBJDIR ?= objects/prod
84 BUILDDIR ?= build/prod
85 STRIP = strip -S
86 endif
87
88 # Configure per-OS peculiarities
89 ifeq ($(os),solaris)
90 CFLAGS_DEBUG = -O0 -DMDNS_DEBUGMSGS=0
91 CFLAGS_OS = -DNOT_HAVE_DAEMON -DNOT_HAVE_SA_LEN -DNOT_HAVE_SOCKLEN_T -DNOT_HAVE_IF_NAMETOINDEX \
92 -DLOG_PERROR=0 -D_XPG4_2 -D__EXTENSIONS__ -DHAVE_BROKEN_RECVIF_NAME -DTARGET_OS_SOLARIS
93 CC = gcc
94 LD = gcc -shared
95 LINKOPTS = -lsocket -lnsl -lresolv
96 JAVACFLAGS_OS += -I$(JDK)/include/solaris
97 ifneq ($(DEBUG),1)
98 STRIP = strip
99 endif
100 else
101
102 ifeq ($(os),linux)
103 CFLAGS_OS = -DNOT_HAVE_SA_LEN -DUSES_NETLINK -DHAVE_LINUX -DTARGET_OS_LINUX
104 FLEXFLAGS_OS = -l
105 JAVACFLAGS_OS += -I$(JDK)/include/linux
106 OPTIONALTARG = nss_mdns
107 OPTINSTALL = InstalledNSS
108 else
109
110 ifeq ($(os),netbsd)
111 CFLAGS_OS =
112 LDCONFIG = ldconfig
113 else
114
115 ifeq ($(os),freebsd)
116 # If not already defined, set LOCALBASE to /usr/local
117 # FreeBSD requires the startup script to end in ".sh"
118 LOCALBASE?=/usr/local
119 INSTBASE=$(LOCALBASE)
120 STARTUPSCRIPTNAME=mdns.sh
121 CFLAGS_OS =
122 # FreeBSD 4 requires threaded code to be compiled and linked using the "-pthread" option,
123 # and requires that the "-lpthread" link option NOT be used
124 # This appies only to FreeBSD -- "man cc" on FreeBSD says:
125 # FreeBSD SPECIFIC OPTIONS
126 # -pthread
127 # Link a user-threaded process against libc_r instead of libc.
128 CFLAGS_PTHREAD = -pthread -D_THREAD_SAFE
129 LINKOPTS_PTHREAD = -pthread
130 JAVACFLAGS_OS += -I$(JDK)/include/freebsd
131 LDCONFIG = ldconfig
132 else
133
134 ifeq ($(os),openbsd)
135 CFLAGS_OS = -DHAVE_BROKEN_RECVDSTADDR
136 LDCONFIG = ldconfig
137 else
138
139 ifeq ($(os),x)
140 # We have to define __MAC_OS_X_VERSION_MIN_REQUIRED=__MAC_OS_X_VERSION_10_4 or on Leopard
141 # we get build failures: ‘daemon’ is deprecated (declared at /usr/include/stdlib.h:283)
142 CFLAGS_OS = -DHAVE_IPV6 -no-cpp-precomp -Werror -Wdeclaration-after-statement \
143 -D__MAC_OS_X_VERSION_MIN_REQUIRED=__MAC_OS_X_VERSION_10_4 #-Wunreachable-code
144 CC = @gcc-4.0
145 LD = $(CC) -dynamiclib
146 LINKOPTS = -lSystem
147 LDSUFFIX = dylib
148 JDK = /System/Library/Frameworks/JavaVM.framework/Home
149 JAVACFLAGS_OS = -dynamiclib -I/System/Library/Frameworks/JavaVM.framework/Headers -framework JavaVM
150 else
151
152 $(error ERROR: Must specify target OS on command-line, e.g. "make os=x [target]".\
153 Supported operating systems include: x, linux, netbsd, freebsd, openbsd, solaris)
154 endif
155 endif
156 endif
157 endif
158 endif
159 endif
160
161 NSSLIBNAME := libnss_mdns
162 NSSVERSION := 0.2
163 NSSLIBFILE := $(NSSLIBNAME)-$(NSSVERSION).so
164 NSSLINKNAME := $(NSSLIBNAME).so.2
165 NSSINSTPATH := /lib
166
167 # If not otherwise defined, we install into /usr/lib and /usr/include
168 # and our startup script is called mdns (e.g. /etc/init.d/mdns)
169 INSTBASE?=/usr
170 STARTUPSCRIPTNAME?=mdns
171
172 ifeq ($(HAVE_IPV6),1)
173 CFLAGS_OS += -DHAVE_IPV6=1
174 else
175 ifeq ($(HAVE_IPV6),0)
176 CFLAGS_OS += -DHAVE_IPV6=0
177 endif
178 endif
179
180 # If directory /usr/share/man exists, then we install man pages into that, else /usr/man
181 ifeq ($(wildcard /usr/share/man), /usr/share/man)
182 MANPATH := /usr/share/man
183 else
184 MANPATH := /usr/man
185 endif
186
187 # If directories /etc/init.d/rc*.d exist, then we install into that (Suse)
188 ifeq ($(wildcard /etc/init.d/rc2.d/), /etc/init.d/rc2.d/)
189 STARTUPSCRIPTDIR = /etc/init.d
190 RUNLEVELSCRIPTSDIR = /etc/init.d
191 else
192 # else if directory /etc/rc.d/init.d/ exists, then we install into that (old Linux)
193 ifeq ($(wildcard /etc/rc.d/init.d/), /etc/rc.d/init.d/)
194 STARTUPSCRIPTDIR = /etc/rc.d/init.d
195 RUNLEVELSCRIPTSDIR = /etc/rc.d
196 else
197 # else if directory /etc/init.d/ exists, then we install into that (new Linux)
198 ifeq ($(wildcard /etc/init.d/), /etc/init.d/)
199 STARTUPSCRIPTDIR = /etc/init.d
200 RUNLEVELSCRIPTSDIR = /etc
201 else
202 # else install into /etc/rc.d/ (*BSD)
203 STARTUPSCRIPTDIR = $(INSTBASE)/etc/rc.d
204 endif
205 endif
206 endif
207
208 CFLAGS = $(CFLAGS_COMMON) $(CFLAGS_OS) $(CFLAGS_DEBUG)
209
210 #############################################################################
211
212 all: setup Daemon libdns_sd Clients SAClient SAResponder SAProxyResponder Identify NetMonitor dnsextd $(OPTIONALTARG)
213
214 install: setup InstalledDaemon InstalledStartup InstalledLib InstalledManPages InstalledClients $(OPTINSTALL)
215
216 # 'setup' sets up the build directory structure the way we want
217 setup:
218 @if test ! -d $(OBJDIR) ; then mkdir -p $(OBJDIR) ; fi
219 @if test ! -d $(BUILDDIR) ; then mkdir -p $(BUILDDIR) ; fi
220
221 # clean removes targets and objects
222 clean:
223 @if test -d $(OBJDIR) ; then rm -r $(OBJDIR) ; fi
224 @if test -d $(BUILDDIR) ; then rm -r $(BUILDDIR) ; fi
225 @$(MAKE) -C ../Clients clean
226
227 #############################################################################
228
229 # daemon target builds the daemon
230 DAEMONOBJS = $(OBJDIR)/PosixDaemon.c.o $(OBJDIR)/mDNSPosix.c.o $(OBJDIR)/mDNSUNP.c.o $(OBJDIR)/mDNS.c.o \
231 $(OBJDIR)/DNSDigest.c.o $(OBJDIR)/uDNS.c.o $(OBJDIR)/DNSCommon.c.o $(OBJDIR)/uds_daemon.c.o \
232 $(OBJDIR)/mDNSDebug.c.o $(OBJDIR)/dnssd_ipc.c.o $(OBJDIR)/GenLinkedList.c.o $(OBJDIR)/PlatformCommon.c.o
233
234 # dnsextd target build dnsextd
235 DNSEXTDOBJ = $(OBJDIR)/mDNSPosix.c.o $(OBJDIR)/mDNSUNP.c.o $(OBJDIR)/mDNSDebug.c.o $(OBJDIR)/GenLinkedList.c.o $(OBJDIR)/DNSDigest.c.o \
236 $(OBJDIR)/DNSCommon.c.o $(OBJDIR)/PlatformCommon.c.o $(OBJDIR)/dnsextd_parser.y.o $(OBJDIR)/dnsextd_lexer.l.o
237
238 Daemon: setup $(BUILDDIR)/mdnsd
239 @echo "Responder daemon done"
240
241 $(BUILDDIR)/mdnsd: $(DAEMONOBJS)
242 $(CC) -o $@ $+ $(LINKOPTS)
243 @$(STRIP) $@
244
245 # libdns_sd target builds the client library
246 libdns_sd: setup $(BUILDDIR)/libdns_sd.$(LDSUFFIX)
247 @echo "Client library done"
248
249 CLIENTLIBOBJS = $(OBJDIR)/dnssd_clientlib.c.so.o $(OBJDIR)/dnssd_clientstub.c.so.o $(OBJDIR)/dnssd_ipc.c.so.o
250
251 $(BUILDDIR)/libdns_sd.$(LDSUFFIX): $(CLIENTLIBOBJS)
252 @$(LD) $(LINKOPTS) -o $@ $+
253 @$(STRIP) $@
254
255 Clients: setup libdns_sd ../Clients/build/dns-sd
256 @echo "Clients done"
257
258 ../Clients/build/dns-sd:
259 @$(MAKE) -C ../Clients
260
261 # nss_mdns target builds the Name Service Switch module
262 nss_mdns: setup $(BUILDDIR)/$(NSSLIBFILE)
263 @echo "Name Service Switch module done"
264
265 $(BUILDDIR)/$(NSSLIBFILE): $(CLIENTLIBOBJS) $(OBJDIR)/nss_mdns.c.so.o
266 @$(LD) $(LINKOPTS) -o $@ $+
267 @$(STRIP) $@
268
269 #############################################################################
270
271 # The Install targets place built stuff in their proper places
272 InstalledDaemon: $(INSTBASE)/sbin/mdnsd
273 @echo $+ " installed"
274
275 InstalledLib: $(INSTBASE)/lib/libdns_sd.$(LDSUFFIX).$(LIBVERS) $(INSTBASE)/include/dns_sd.h
276 @echo $+ " installed"
277
278 InstalledStartup: $(STARTUPSCRIPTDIR)/$(STARTUPSCRIPTNAME)
279 @echo $+ " installed"
280
281 InstalledManPages: $(MANPATH)/man8/mdnsd.8
282 @echo $+ " installed"
283
284 InstalledClients: $(INSTBASE)/bin/dns-sd
285 @echo $+ " installed"
286
287 InstalledNSS: $(NSSINSTPATH)/$(NSSLINKNAME) /etc/nss_mdns.conf $(MANPATH)/man5/nss_mdns.conf.5 $(MANPATH)/man8/libnss_mdns.8
288 @echo $+ " installed"
289
290 # Note: If daemon already installed, we make sure it's stopped before overwriting it
291 $(INSTBASE)/sbin/mdnsd: $(BUILDDIR)/mdnsd
292 @if test -x $@; then $(STARTUPSCRIPTDIR)/$(STARTUPSCRIPTNAME) stop; fi
293 $(CP) $< $@
294
295 $(INSTBASE)/lib/libdns_sd.$(LDSUFFIX).$(LIBVERS): $(BUILDDIR)/libdns_sd.$(LDSUFFIX)
296 $(CP) $< $@
297 $(LN) $@ $(INSTBASE)/lib/libdns_sd.$(LDSUFFIX)
298 ifdef LDCONFIG
299 # -m means 'merge into existing database', -R means 'rescan directories'
300 $(LDCONFIG) -mR
301 endif
302
303 $(INSTBASE)/include/dns_sd.h: $(SHAREDDIR)/dns_sd.h
304 $(CP) $< $@
305
306 # We make this target dependent on $(INSTBASE)/sbin/mdnsd because we need to ensure
307 # that the daemon is installed *before* we try to execute the command to start it.
308 $(STARTUPSCRIPTDIR)/$(STARTUPSCRIPTNAME): mdnsd.sh $(STARTUPSCRIPTDIR) $(INSTBASE)/sbin/mdnsd
309 $(CP) $< $@
310 chmod ugo+x $@
311 $@ start
312 ifdef RUNLEVELSCRIPTSDIR
313 ifeq ($(wildcard $(RUNLEVELSCRIPTSDIR)/runlevels/default), $(RUNLEVELSCRIPTSDIR)/runlevels/default)
314 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/runlevels/default/mdns
315 else
316 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/rc2.d/S52mdns
317 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/rc3.d/S52mdns
318 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/rc4.d/S52mdns
319 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/rc5.d/S52mdns
320 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/rc0.d/K16mdns
321 $(LN) $@ $(RUNLEVELSCRIPTSDIR)/rc6.d/K16mdns
322 endif
323 endif
324
325 $(MANPATH)/man5/%.5: %.5
326 cp $< $@
327 chmod 444 $@
328
329 $(MANPATH)/man8/%.8: %.8
330 cp $< $@
331 chmod 444 $@
332
333 $(MANPATH)/man8/mdnsd.8: $(SHAREDDIR)/mDNSResponder.8
334 cp $< $@
335 chmod 444 $@
336
337 $(INSTBASE)/bin/dns-sd: ../Clients/build/dns-sd
338 $(CP) $< $@
339
340 $(NSSINSTPATH)/$(NSSLINKNAME): $(NSSINSTPATH)/$(NSSLIBFILE)
341 $(LN) $< $@
342 ldconfig
343
344 $(NSSINSTPATH)/$(NSSLIBFILE): $(BUILDDIR)/$(NSSLIBFILE)
345 $(CP) $< $@
346 chmod 444 $@
347
348 /etc/nss_mdns.conf: nss_mdns.conf
349 $(CP) $< $@
350 chmod 444 $@
351 # Check the nsswitch.conf file.
352 # If 'mdns' does not already appear on the "hosts:" line, then add it right before 'dns'
353 cp -f /etc/nsswitch.conf /etc/nsswitch.conf.pre-mdns
354 sed -e '/mdns/!s/^\(hosts:.*\)dns\(.*\)/\1mdns dns\2/' /etc/nsswitch.conf.pre-mdns > /etc/nsswitch.conf
355
356 #############################################################################
357
358 # The following targets build Java wrappers for the dns-sd.h API.
359 # Note that the JavaForXcode targets are used when building the project for OS X using Xcode
360
361 JAVAC = $(JDK)/bin/javac
362 JAVAH = $(JDK)/bin/javah
363 JAVADOC = $(JDK)/bin/javadoc
364 JAR = $(JDK)/bin/jar
365 JAVACFLAGS = $(CFLAGS) $(JAVACFLAGS_OS) -I$(JDK)/include
366
367 JavaForXcode_: setup $(BUILDDIR)/dns_sd.jar $(PROJECT_DERIVED_FILE_DIR)/DNSSD.java.h
368 @echo $@ done
369
370 $(PROJECT_DERIVED_FILE_DIR)/DNSSD.java.h: $(OBJDIR)/DNSSD.java.h
371 @if test ! -d $(PROJECT_DERIVED_FILE_DIR) ; then mkdir -p $(PROJECT_DERIVED_FILE_DIR) ; fi
372 $(CP) $< $@
373
374 JavaForXcode_clean:
375 @if test -d $(OBJDIR) ; then rm -r $(OBJDIR) ; fi
376 @if test -f $(PROJECT_DERIVED_FILE_DIR)/DNSSD.java.h ; then $(RM) $(PROJECT_DERIVED_FILE_DIR)/DNSSD.java.h ; fi
377 @if test -f $(BUILDDIR)/dns_sd.jar ; then $(RM) $(BUILDDIR)/dns_sd.jar ; fi
378 @echo $@ done
379
380 JavaForXcode_installhdrs:
381 @echo $@ NOOP
382
383 JavaForXcode_install: JavaForXcode_ $(DSTROOT)/$(SYSTEM_LIBRARY_DIR)/Java/Extensions/dns_sd.jar
384 @echo $@ done
385
386 $(DSTROOT)/$(SYSTEM_LIBRARY_DIR)/Java/Extensions/dns_sd.jar: $(BUILDDIR)/dns_sd.jar
387 @if test ! -d $(DSTROOT)/$(SYSTEM_LIBRARY_DIR)/Java/Extensions ; then mkdir -p $(DSTROOT)/$(SYSTEM_LIBRARY_DIR)/Java/Extensions ; fi
388 $(CP) $< $@
389
390 Java: setup $(BUILDDIR)/dns_sd.jar $(BUILDDIR)/libjdns_sd.$(LDSUFFIX)
391 @echo "Java wrappers done"
392
393 JAVASRC = $(SHAREDDIR)/Java
394 JARCONTENTS = $(OBJDIR)/com/apple/dnssd/DNSSDService.class \
395 $(OBJDIR)/com/apple/dnssd/DNSSDException.class \
396 $(OBJDIR)/com/apple/dnssd/DNSRecord.class \
397 $(OBJDIR)/com/apple/dnssd/TXTRecord.class \
398 $(OBJDIR)/com/apple/dnssd/DNSSDRegistration.class \
399 $(OBJDIR)/com/apple/dnssd/BaseListener.class \
400 $(OBJDIR)/com/apple/dnssd/BrowseListener.class \
401 $(OBJDIR)/com/apple/dnssd/ResolveListener.class \
402 $(OBJDIR)/com/apple/dnssd/RegisterListener.class \
403 $(OBJDIR)/com/apple/dnssd/QueryListener.class \
404 $(OBJDIR)/com/apple/dnssd/DomainListener.class \
405 $(OBJDIR)/com/apple/dnssd/RegisterRecordListener.class \
406 $(OBJDIR)/com/apple/dnssd/DNSSDRecordRegistrar.class \
407 $(OBJDIR)/com/apple/dnssd/DNSSD.class
408
409 $(BUILDDIR)/dns_sd.jar: $(JARCONTENTS) setup
410 $(JAR) -cf $@ -C $(OBJDIR) com
411
412 $(BUILDDIR)/libjdns_sd.$(LDSUFFIX): $(JAVASRC)/JNISupport.c $(OBJDIR)/DNSSD.java.h setup libdns_sd
413 $(CC) -o $@ $< $(JAVACFLAGS) -I$(OBJDIR) -L$(BUILDDIR)
414
415 $(OBJDIR)/com/apple/dnssd/%.class: $(JAVASRC)/%.java
416 $(JAVAC) -d $(OBJDIR) -classpath $(OBJDIR) $<
417
418 $(OBJDIR)/DNSSD.java.h: $(OBJDIR)/com/apple/dnssd/DNSSD.class
419 $(JAVAH) -force -classpath $(OBJDIR) -o $@ \
420 com.apple.dnssd.AppleDNSSD \
421 com.apple.dnssd.AppleBrowser \
422 com.apple.dnssd.AppleResolver \
423 com.apple.dnssd.AppleRegistration \
424 com.apple.dnssd.AppleQuery \
425 com.apple.dnssd.AppleDomainEnum \
426 com.apple.dnssd.AppleService \
427 com.apple.dnssd.AppleDNSRecord \
428 com.apple.dnssd.AppleRecordRegistrar
429
430 #############################################################################
431
432 # The following target builds documentation for the Java wrappers.
433
434 JavaDoc: Java setup
435 $(JAVADOC) $(JAVASRC)/*.java -classpath $(OBJDIR) -d $(BUILDDIR) -public
436
437 #############################################################################
438
439 # The following targets build embedded example programs
440 SPECIALOBJ = $(OBJDIR)/mDNSPosix.c.o $(OBJDIR)/mDNSUNP.c.o $(OBJDIR)/mDNSDebug.c.o $(OBJDIR)/GenLinkedList.c.o \
441 $(OBJDIR)/DNSDigest.c.o $(OBJDIR)/uDNS.c.o $(OBJDIR)/DNSCommon.c.o $(OBJDIR)/PlatformCommon.c.o
442 COMMONOBJ = $(SPECIALOBJ) $(OBJDIR)/mDNS.c.o
443 APPOBJ = $(COMMONOBJ) $(OBJDIR)/ExampleClientApp.c.o
444
445 SAClient: setup $(BUILDDIR)/mDNSClientPosix
446 @echo "Embedded Standalone Client done"
447
448 SAResponder: setup $(BUILDDIR)/mDNSResponderPosix
449 @echo "Embedded Standalone Responder done"
450
451 SAProxyResponder: setup $(BUILDDIR)/mDNSProxyResponderPosix
452 @echo "Embedded Standalone ProxyResponder done"
453
454 Identify: setup $(BUILDDIR)/mDNSIdentify
455 @echo "Identify done"
456
457 NetMonitor: setup $(BUILDDIR)/mDNSNetMonitor
458 @echo "NetMonitor done"
459
460 dnsextd: setup $(BUILDDIR)/dnsextd
461 @echo "dnsextd done"
462
463 $(BUILDDIR)/mDNSClientPosix: $(APPOBJ) $(OBJDIR)/Client.c.o
464 $(CC) $+ -o $@ $(LINKOPTS)
465
466 $(BUILDDIR)/mDNSResponderPosix: $(COMMONOBJ) $(OBJDIR)/Responder.c.o
467 $(CC) $+ -o $@ $(LINKOPTS)
468
469 $(BUILDDIR)/mDNSProxyResponderPosix: $(COMMONOBJ) $(OBJDIR)/ProxyResponder.c.o
470 $(CC) $+ -o $@ $(LINKOPTS)
471
472 $(BUILDDIR)/mDNSIdentify: $(SPECIALOBJ) $(OBJDIR)/Identify.c.o
473 $(CC) $+ -o $@ $(LINKOPTS)
474
475 $(OBJDIR)/Identify.c.o: $(COREDIR)/mDNS.c # Note: Identify.c textually imports mDNS.c
476
477 $(BUILDDIR)/mDNSNetMonitor: $(SPECIALOBJ) $(OBJDIR)/NetMonitor.c.o
478 $(CC) $+ -o $@ $(LINKOPTS)
479
480 $(OBJDIR)/NetMonitor.c.o: $(COREDIR)/mDNS.c # Note: NetMonitor.c textually imports mDNS.c
481
482 $(BUILDDIR)/dnsextd: $(DNSEXTDOBJ) $(OBJDIR)/dnsextd.c.threadsafe.o
483 $(CC) $+ -o $@ $(LINKOPTS) $(LINKOPTS_PTHREAD)
484
485 #############################################################################
486
487 # Implicit rules
488 $(OBJDIR)/%.c.o: %.c
489 $(CC) $(CFLAGS) -c -o $@ $<
490
491 $(OBJDIR)/%.c.o: $(COREDIR)/%.c
492 $(CC) $(CFLAGS) -c -o $@ $<
493
494 $(OBJDIR)/%.c.o: $(SHAREDDIR)/%.c
495 $(CC) $(CFLAGS) -c -o $@ $<
496
497 $(OBJDIR)/%.c.threadsafe.o: %.c
498 $(CC) $(CFLAGS) $(CFLAGS_PTHREAD) -D_REENTRANT -c -o $@ $<
499
500 $(OBJDIR)/%.c.threadsafe.o: $(SHAREDDIR)/%.c
501 $(CC) $(CFLAGS) $(CFLAGS_PTHREAD) -D_REENTRANT -c -o $@ $<
502
503 $(OBJDIR)/%.c.so.o: %.c
504 $(CC) $(CFLAGS) -c -fPIC -o $@ $<
505
506 $(OBJDIR)/%.c.so.o: $(SHAREDDIR)/%.c
507 $(CC) $(CFLAGS) -c -fPIC -o $@ $<
508
509 $(OBJDIR)/%.y.o: $(SHAREDDIR)/%.y
510 $(BISON) -o $(OBJDIR)/$*.c -d $<
511 $(CC) $(CFLAGS) -c -o $@ $(OBJDIR)/$*.c
512
513 $(OBJDIR)/%.l.o: $(SHAREDDIR)/%.l
514 $(FLEX) $(FLEXFLAGS_OS) -i -o$(OBJDIR)/$*.l.c $<
515 $(CC) $(CFLAGS) -Wno-error -c -o $@ $(OBJDIR)/$*.l.c