compile coreutils.rdef only once for all

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10087 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty
2004-11-21 06:27:20 +00:00
parent 7f7f792a0e
commit 29cf12d1ff
+14 -10
View File
@@ -4,6 +4,10 @@ SubDirCcFlags -DHAVE_CONFIG_H -DLOCALEDIR=\'\"/share/locale\"\' ;
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) lib ] ; SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) lib ] ;
SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) ] ; SubDirHdrs [ FDirName $(SUBDIR) $(DOTDOT) ] ;
local coreutils_rsrc = [ FGristFiles coreutils.rsrc ] ;
ResComp $(coreutils_rsrc) : [ FGristFiles coreutils.rdef ] ;
StdBinCommands StdBinCommands
basename.c basename.c
cat.c cat.c
@@ -72,7 +76,7 @@ StdBinCommands
wc.c wc.c
whoami.c whoami.c
yes.c yes.c
: libfetish.a : coreutils.rdef ; : libfetish.a : $(coreutils_rsrc) ;
# stat.c # stat.c
# chroot.c # chroot.c
@@ -86,28 +90,28 @@ StdBinCommands
BinCommand ls : BinCommand ls :
ls.c ls-dir.c : libfetish.a : coreutils.rdef ; ls.c ls-dir.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand rm : BinCommand rm :
rm.c remove.c : libfetish.a : coreutils.rdef ; rm.c remove.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand chgroup : BinCommand chgroup :
chgrp.c chown-core.c : libfetish.a : coreutils.rdef ; chgrp.c chown-core.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand chmod : BinCommand chmod :
chmod.c chown-core.c : libfetish.a : coreutils.rdef ; chmod.c chown-core.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand cp : BinCommand cp :
cp.c copy.c cp-hash.c : libfetish.a : coreutils.rdef ; cp.c copy.c cp-hash.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand md5sum : BinCommand md5sum :
md5sum.c md5.c : libfetish.a : coreutils.rdef ; md5sum.c md5.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand mv : BinCommand mv :
mv.c copy.c cp-hash.c remove.c : libfetish.a : coreutils.rdef ; mv.c copy.c cp-hash.c remove.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand sha1sum : BinCommand sha1sum :
md5sum.c sha1sum.c : libfetish.a : coreutils.rdef ; md5sum.c sha1sum.c : libfetish.a : $(coreutils_rsrc) ;
BinCommand vdir : BinCommand vdir :
ls.c ls-vdir.c : libfetish.a : coreutils.rdef ; ls.c ls-vdir.c : libfetish.a : $(coreutils_rsrc) ;