]> git.saurik.com Git - apple/shell_cmds.git/blob - alias/Makefile
shell_cmds-162.tar.gz
[apple/shell_cmds.git] / alias / Makefile
1 Project = alias
2 Install_Dir = /usr/bin
3
4 MANPAGES = alias.1
5
6 Extra_CC_Flags = -Wall
7 Extra_LD_Flags = -dead_strip
8
9 include $(MAKEFILEPATH)/CoreOS/ReleaseControl/BSDCommon.make
10
11 BUILTINS = bg cd command fc fg getopts hash jobs read type ulimit umask unalias wait
12
13 after_install:
14 $(INSTALL_SCRIPT) generic.sh $(DSTROOT)$(Install_Dir)/alias
15 @for builtin in $(BUILTINS); do \
16 $(LN) $(DSTROOT)/$(Install_Dir)/alias \
17 "$(DSTROOT)/$(Install_Dir)/$${builtin}" ; \
18 done
19 # $(LN) $(DSTROOT)/usr/share/man/man1/alias.1 \
20 # "$(DSTROOT)/usr/share/man/man1/$${builtin}.1" ; \