diff --git a/Jamrules b/Jamrules index e97e6c5d89..69c4dc8825 100644 --- a/Jamrules +++ b/Jamrules @@ -363,9 +363,10 @@ rule App rule BinCommand { - # BinCommand : : ; + # BinCommand : : : ; SetupIncludes ; SetupObjectsDir ; + AddResources $(1) : $(4) ; Main $(1) : $(2) ; MakeLocate $(1) : $(OBOS_BIN_DIR) ; LinkSharedOSLibs $(1) : $(3) ; @@ -375,17 +376,18 @@ rule BinCommand rule StdBinCommands { - # StdBinCommands : ; + # StdBinCommands : : ; SetupIncludes ; SetupObjectsDir ; local libs = $(2) ; + local ress = $(3) ; local source ; for source in $(1) { local target = $(source:S=) ; target = [ FGristFiles $(target) ] ; - BinCommand $(target) : $(source) : $(libs) ; + BinCommand $(target) : $(source) : $(libs) : $(ress) ; } }