diff --git a/src/apps/bin/bzip2/Jamfile b/src/apps/bin/bzip2/Jamfile index c893e5ca75..9c75d60548 100644 --- a/src/apps/bin/bzip2/Jamfile +++ b/src/apps/bin/bzip2/Jamfile @@ -2,9 +2,12 @@ SubDir OBOS_TOP src apps bin bzip2 ; # set some additional defines { - SubDirCcFlags -Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce -D_FILE_OFFSET_BITS=64 ; + SubDirCcFlags -Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce -D_FILE_OFFSET_BITS=64 -w ; } +local bzip2_rsrc = [ FGristFiles bzip2.rsrc ] ; +ResComp $(bzip2_rsrc) : [ FGristFiles bzip2.rdef ] ; + BinCommand bzip2 : blocksort.c huffman.c @@ -14,12 +17,12 @@ BinCommand bzip2 : decompress.c bzlib.c bzip2.c - : : bzip2.rdef + : : $(bzip2_rsrc) ; BinCommand bzip2recover : bzip2recover.c - : : bzip2.rdef + : : $(bzip2_rsrc) ; { @@ -41,4 +44,4 @@ BinCommand bzip2recover : Shell bzmore : bzmore ; MakeLocate bzless : $(OBOS_BIN_DIR) ; RelSymLink bzless : bzmore ; -} \ No newline at end of file +}