]>
Commit | Line | Data |
---|---|---|
57b0aad2 A |
1 | Project = syslog |
2 | ProductType = tool | |
3 | Install_Dir = /usr/bin | |
b16a592a A |
4 | |
5 | CFILES = syslog.c | |
57b0aad2 | 6 | MANPAGES = syslog.1 |
b16a592a | 7 | |
57b0aad2 A |
8 | Extra_CC_Flags = -Wall -mdynamic-no-pic \ |
9 | -DINET6 \ | |
10 | -I"$(OBJROOT)"/aslcommon | |
11 | Extra_LD_Flags = -dead_strip -L"$(SYMROOT)" -laslcommon | |
b16a592a | 12 | |
57b0aad2 A |
13 | # Determine product configuartion |
14 | PRODUCT = $(shell tconf --product) | |
15 | ifeq ($(PRODUCT),iPhone) | |
16 | Extra_CC_Flags += -DCONFIG_IPHONE | |
17 | endif | |
b16a592a | 18 | |
57b0aad2 | 19 | include $(MAKEFILEPATH)/CoreOS/ReleaseControl/BSDCommon.make |