]> git.saurik.com Git - apple/mdnsresponder.git/blob - Clients/Makefile
mDNSResponder-108.tar.gz
[apple/mdnsresponder.git] / Clients / Makefile
1 # Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved.
2 #
3 # @APPLE_LICENSE_HEADER_START@
4 #
5 # This file contains Original Code and/or Modifications of Original Code
6 # as defined in and that are subject to the Apple Public Source License
7 # Version 2.0 (the 'License'). You may not use this file except in
8 # compliance with the License. Please obtain a copy of the License at
9 # http://www.opensource.apple.com/apsl/ and read it before using this
10 # file.
11 #
12 # The Original Code and all software distributed under the License are
13 # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
17 # Please see the License for the specific language governing rights and
18 # limitations under the License.
19 #
20 # @APPLE_LICENSE_HEADER_END@
21 #
22 # $Log: Makefile,v $
23 # Revision 1.6 2004/09/24 21:15:26 cheshire
24 # <rdar://problem/3724985> Library "libmdns" misnamed; should be "libdns_sd"
25 #
26 # Revision 1.5 2004/09/02 17:32:45 cheshire
27 # Look for headers in ../mDNSShared before we go to /usr/include
28 #
29 # Revision 1.4 2004/05/21 17:25:56 cheshire
30 # Fixes to make sample client work on Linux
31 #
32 # Revision 1.3 2004/03/12 08:05:32 cheshire
33 # Add a "make clean" target
34 #
35 # Revision 1.2 2004/02/11 20:59:26 cheshire
36 # Fix Makefile so it creates the "build" directory if necessary
37 #
38 # Revision 1.1 2004/02/06 03:19:09 cheshire
39 # Check in code to make command-line "dns-sd" testing tool
40 #
41 #
42 # Notes:
43 # $@ means "The file name of the target of the rule"
44 # $< means "The name of the first prerequisite"
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_chapter/make_10.html#SEC111>
48
49 #############################################################################
50
51
52 # If library /usr/lib/libdns_sd.* exists, then link it
53 ifneq "$(wildcard /usr/lib/libdns_sd.*)" ""
54 LIBS = -ldns_sd
55 else
56 LIBS =
57 endif
58
59 targets: build/dns-sd
60
61 clean:
62 rm -rf build
63
64 build:
65 mkdir build
66
67 build/dns-sd: build dns-sd.c
68 cc $(filter %.c %.o, $+) $(LIBS) -I../mDNSShared -o $@