]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # Top level makefile for Build & Integration. | |
3 | # | |
4 | # This file is used to facilitate checking the mDNSResponder project | |
5 | # directly out of CVS and submitting to B&I at Apple. | |
6 | # | |
7 | # The various platform directories contain makefiles or projects | |
8 | # specific to that platform. | |
9 | # | |
10 | # B&I builds must respect the following target: | |
11 | # install: | |
12 | # installsrc: | |
13 | # installhdrs: | |
14 | # clean: | |
15 | # | |
16 | ||
17 | include /Developer/Makefiles/pb_makefiles/platform.make | |
18 | ||
19 | MVERS = "mDNSResponder-108.6" | |
20 | ||
21 | install: | |
22 | cd "$(SRCROOT)/mDNSMacOSX"; xcodebuild install OBJROOT=$(OBJROOT) SYMROOT=$(SYMROOT) DSTROOT=$(DSTROOT) MVERS=$(MVERS) | |
23 | ||
24 | installsrc: | |
25 | ditto . ${SRCROOT} | |
26 | ||
27 | installhdrs:: | |
28 | cd "$(SRCROOT)/mDNSMacOSX"; xcodebuild installhdrs OBJROOT=$(OBJROOT) SYMROOT=$(SYMROOT) DSTROOT=$(DSTROOT) MVERS=$(MVERS) | |
29 | ||
30 | clean:: | |
31 | echo clean |