Changeset 275 for trunk/kBuild
- Timestamp:
- May 6, 2005, 1:05:50 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r274 r275 816 816 # installing 817 817 ifdef $(target)_INST 818 ifndef KBUILD_NEW_STUFF818 #ifndef KBUILD_NEW_STUFF 819 819 $(eval pubexe := $(PATH_BIN)/$(notdir $(exe))) 820 820 $(pubexe) : $(exe) $(dir $(pubexe)).dir_created 821 821 $(RM) -f $(pubexe) 822 822 $(CP) $(exe) $(pubexe) 823 else823 #else 824 824 #$(eval pubexe := $(patsubst %/,%/$(notdir $(exe)), \ 825 825 # $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(PATH_BIN)/))) … … 827 827 # $(RM) -f $$@ 828 828 # $(CP) $(exe) $$@ 829 endif829 #endif 830 830 831 831 _BLDPROGS += $(pubexe) … … 897 897 # installing 898 898 ifndef $(target)_NOINST 899 ifndef KBUILD_NEW_STUFF899 #ifndef KBUILD_NEW_STUFF 900 900 $(eval publib := $(PATH_LIB)/$(notdir $(lib))) 901 901 $(publib) : $(lib) $(dir $(publib)).dir_created 902 902 $(RM) -f $(publib) 903 903 $(CP) $(lib) $(publib) 904 else904 #else 905 905 #$(eval publib := $(patsubst %/,%/$(notdir $(lib)), \ 906 906 # $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(PATH_LIB)/))) … … 908 908 # $(RM) -f $$@ 909 909 # $(CP) $(lib) $$@ 910 endif910 #endif 911 911 912 912 _LIBS += $(publib) … … 1079 1079 # installing 1080 1080 ifndef $(target)_NOINST 1081 ifndef KBUILD_NEW_STUFF1081 #ifndef KBUILD_NEW_STUFF 1082 1082 $(eval pubdll := $(PATH_BIN)/$(notdir $(dll))) 1083 1083 $(pubdll) : $(dll) $(dir $(pubdll)).dir_created 1084 1084 $(RM) -f $(pubdll) 1085 1085 $(CP) $(dll) $(pubdll) 1086 else1086 #else 1087 1087 #$(eval pubdll := $(patsubst %/,%/$(notdir $(dll)), \ 1088 1088 # $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(PATH_DLL)/))) … … 1090 1090 # $(RM) -f $$@ 1091 1091 # $(CP) $(dll) $$@ 1092 endif1092 #endif 1093 1093 1094 1094 $(eval TARGET_PUB_$(target) := $(pubdll)) … … 1262 1262 # installing 1263 1263 ifndef $(target)_NOINST 1264 ifndef KBUILD_NEW_STUFF1264 #ifndef KBUILD_NEW_STUFF 1265 1265 $(eval pubexe := $(PATH_BIN)/$(notdir $(exe))) 1266 1266 $(pubexe) : $(exe) $(dir $(pubexe)).dir_created 1267 1267 $(RM) -f $(pubexe) 1268 1268 $(CP) $(exe) $(pubexe) 1269 else1269 #else 1270 1270 #$(eval pubexe := $(patsubst %/,%/$(notdir $(exe)), \ 1271 1271 # $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(PATH_BIN)/))) … … 1273 1273 # $(RM) -f $$@ 1274 1274 # $(CP) $(exe) $$@ 1275 endif1275 #endif 1276 1276 1277 1277 _PROGRAMS += $(pubexe) … … 1443 1443 # installing 1444 1444 ifndef $(target)_NOINST 1445 ifndef KBUILD_NEW_STUFF1445 #ifndef KBUILD_NEW_STUFF 1446 1446 $(eval pubsys := $(PATH_BIN)/$(notdir $(sys))) 1447 1447 $(pubsys): $(sys) $(dir $(pubsys)).dir_created 1448 1448 $(RM) -f $(pubsys) 1449 1449 $(CP) $(sys) $(pubsys) 1450 else1450 #else 1451 1451 #$(eval pubsys := $(patsubst %/,%/$(notdir $(sys)), \ 1452 1452 # $(if $($(target)_INST), $(addprefix $(PATH_INS)/,$($(target)_INST)), $(PATH_SYS)/))) … … 1454 1454 # $(RM) -f $$@ 1455 1455 # $(CP) $(sys) $$@ 1456 endif1456 #endif 1457 1457 1458 1458 $(eval _SYSMODS += $(pubsys))
Note:
See TracChangeset
for help on using the changeset viewer.