Shell scripts and links for gzip are correctly built now.

is the LinkSharedOSLibs line needed ?


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7022 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval
2004-03-18 08:27:23 +00:00
parent 6c4f442063
commit 56e682c242
+28 -4
View File
@@ -17,8 +17,32 @@ BinCommand gzip :
;
LinkSharedOSLibs gzip : be ;
LinkSharedOSLibs gunzip : be ;
LinkSharedOSLibs zcat : be ;
# Gotta figure out how to copy zdiff, zfile, zforce, zgrep, zmore, and znew scripts to the
# distro/bin folder...
{
MakeLocate gunzip : $(OBOS_BIN_DIR) ;
RelSymLink gunzip : gzip ;
MakeLocate zcat : $(OBOS_BIN_DIR) ;
RelSymLink zcat : gzip ;
MakeLocate <bin>zdiff : $(OBOS_BIN_DIR) ;
Shell <bin>zdiff : zdiff ;
MakeLocate zcmp : $(OBOS_BIN_DIR) ;
RelSymLink zcmp : <bin>zdiff ;
MakeLocate <bin>zgrep : $(OBOS_BIN_DIR) ;
Shell <bin>zgrep : zgrep ;
MakeLocate zegrep : $(OBOS_BIN_DIR) ;
RelSymLink zegrep : <bin>zgrep ;
MakeLocate zfgrep : $(OBOS_BIN_DIR) ;
RelSymLink zfgrep : <bin>zgrep ;
MakeLocate <bin>zmore : $(OBOS_BIN_DIR) ;
Shell <bin>zmore : zmore ;
MakeLocate zless : $(OBOS_BIN_DIR) ;
RelSymLink zless : <bin>zmore ;
MakeLocate <bin>znew : $(OBOS_BIN_DIR) ;
Shell <bin>znew : znew ;
MakeLocate <bin>zforce : $(OBOS_BIN_DIR) ;
Shell <bin>zforce : zforce ;
MakeLocate <bin>zfile : $(OBOS_BIN_DIR) ;
Shell <bin>zfile : zfile ;
MakeLocate <bin>gzexe : $(OBOS_BIN_DIR) ;
Shell <bin>gzexe : gzexe ;
}