1 # Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved.
3 # @APPLE_LICENSE_HEADER_START@
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
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.
20 # @APPLE_LICENSE_HEADER_END@
23 # Revision 1.6 2004/09/24 21:15:26 cheshire
24 # <rdar://problem/3724985> Library "libmdns" misnamed; should be "libdns_sd"
26 # Revision 1.5 2004/09/02 17:32:45 cheshire
27 # Look for headers in ../mDNSShared before we go to /usr/include
29 # Revision 1.4 2004/05/21 17:25:56 cheshire
30 # Fixes to make sample client work on Linux
32 # Revision 1.3 2004/03/12 08:05:32 cheshire
33 # Add a "make clean" target
35 # Revision 1.2 2004/02/11 20:59:26 cheshire
36 # Fix Makefile so it creates the "build" directory if necessary
38 # Revision 1.1 2004/02/06 03:19:09 cheshire
39 # Check in code to make command-line "dns-sd" testing tool
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>
49 #############################################################################
52 # If library /usr/lib/libdns_sd.* exists, then link it
53 ifneq "$(wildcard /usr/lib/libdns_sd.*)" ""
67 build/dns-sd: build dns-sd.c
68 cc $(filter %.c %.o, $+) $(LIBS) -I../mDNSShared -o $@