]> git.saurik.com Git - apple/coreosmakefiles.git/blob - Makefile
CoreOSMakefiles-75.tar.gz
[apple/coreosmakefiles.git] / Makefile
1 Project=CoreOSMakefiles
2
3 Destination = $(DEVELOPER_DIR)/Makefiles/CoreOS
4 BSDSUFFIX = .mk
5 BSDDEFINE = BSDMAKESTYLE
6 GNUSUFFIX = .make
7 INBASENAMES = Commands Variables
8 INSUFFIX = .in
9 STANDARD = Standard
10
11 install:
12 @$(MAKE) installsrc SRCROOT=$(DSTROOT)$(Destination)
13 rm -f $(DSTROOT)$(Destination)/Makefile
14 mv -f $(DSTROOT)$(Destination)/bin $(DSTROOT)$(DEVELOPER_DIR)/Makefiles
15 @set -x && \
16 for i in $(INBASENAMES); do \
17 unifdef -U$(BSDDEFINE) -t $(DSTROOT)$(Destination)/$(STANDARD)/$$i$(INSUFFIX) > $(DSTROOT)$(Destination)/$(STANDARD)/$$i$(GNUSUFFIX); \
18 [ $$? -eq 1 ] || exit 1; \
19 $(RM) -f $(DSTROOT)$(Destination)/$(STANDARD)/$$i$(INSUFFIX) || exit 1; \
20 done
21
22 installhdrs:
23 $(_v) echo No headers to install
24
25 installsrc:
26 install -d "$(SRCROOT)"
27 rsync -a --exclude=.svn --exclude=.git ./ "$(SRCROOT)"
28
29 clean:
30 $(_v) echo Nothing to clean