file_cmds-202.2.tar.gz
[apple/file_cmds.git] / ls / Makefile
1 Project = ls
2 Install_Dir = /bin
3
4 CFILES = cmp.c ls.c print.c util.c humanize_number.c
5 MANPAGES = ls.1
6
7 Extra_CC_Flags = -Werror -Wall -mdynamic-no-pic \
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
15
16 include $(MAKEFILEPATH)/CoreOS/ReleaseControl/BSDCommon.make