]> git.saurik.com Git - apple/xnu.git/blame - SETUP/decomment/Makefile
xnu-6153.11.26.tar.gz
[apple/xnu.git] / SETUP / decomment / Makefile
CommitLineData
316670eb
A
1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5
316670eb
A
6include $(MakeInc_cmd)
7include $(MakeInc_def)
8
9OBJS = decomment.o
10
39236c6e 11CFLAGS = -isysroot $(HOST_SDKROOT) -mmacosx-version-min=$(HOST_OS_VERSION) -g -O0 -I$(SOURCE) -I.
316670eb
A
12
13WARNFLAGS = -Wall
14
39236c6e 15LDFLAGS = -isysroot $(HOST_SDKROOT) -mmacosx-version-min=$(HOST_OS_VERSION)
316670eb
A
16
17decomment: $(OBJS)
cb323159 18 $(call makelog,$(ColorH)HOST_LD$(Color0) $(ColorF)$@$(Color0))
39236c6e 19 $(_v)$(HOST_CC) $(LDFLAGS) -o $@ $^
cb323159 20 $(call makelog,$(ColorH)HOST_CODESIGN$(Color0) $(ColorF)$@$(Color0))
39236c6e 21 $(_v)env CODESIGN_ALLOCATE=$(HOST_CODESIGN_ALLOCATE) $(HOST_CODESIGN) -s - $@
316670eb 22
39236c6e 23%.o: %.c
cb323159 24 $(call makelog,$(ColorH)HOST_CC$(Color0) $(ColorF)$@$(Color0))
39236c6e 25 $(_v)$(HOST_CC) $(WARNFLAGS) $(CFLAGS) -c -o $@ $<
316670eb 26
39236c6e 27do_build_setup:: decomment
316670eb
A
28
29include $(MakeInc_rule)
30include $(MakeInc_dir)