]>
Commit | Line | Data |
---|---|---|
1 | Project = ls | |
2 | Install_Dir = /bin | |
3 | ||
4 | CFILES = cmp.c ls.c print.c util.c | |
5 | MANPAGES = ls.1 | |
6 | ||
7 | Extra_CC_Flags = -Werror -Wall \ | |
8 | -D__FBSDID=__RCSID \ | |
9 | "-I$(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders" \ | |
10 | -DCOLORLS \ | |
11 | -D_DARWIN_USE_64_BIT_INODE \ | |
12 | -include TargetConditionals.h | |
13 | Extra_LD_Flags = -dead_strip \ | |
14 | -lncurses -lutil | |
15 | ||
16 | include $(MAKEFILEPATH)/CoreOS/ReleaseControl/BSDCommon.make |