Changeset 131


Ignore:
Timestamp:
Jun 30, 2004, 6:01:52 PM (21 years ago)
Author:
bird
Message:

Fixed publish bug. footer.kmk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/footer.kmk

    r130 r131  
    655655
    656656# publish rule (still need work)
    657 ifndef $(target)_noinst
     657ifndef $(target)_NOINST
    658658$(eval publib := $(PATH_LIB)/$(notdir $(lib)))
    659659$(publib) : $(lib) $(dir $(publib)).dir_created
     
    802802$(eval $(TOOL_$(tool)_LINK_PROGRAM))
    803803# publish rule (still need work)
    804 ifndef $(target)_noinst
    805 $(eval pubexe := $(PATH_LIB)/$(notdir $(exe)))
     804ifndef $(target)_NOINST
     805$(eval pubexe := $(PATH_BIN)/$(notdir $(exe)))
    806806$(pubexe) : $(exe) $(dir $(pubexe)).dir_created
    807807        $(CP) $(exe) $(pubexe)
     
    964964                                       
    965965# publish rule (still need work)
    966 ifndef $(target)_noinst
    967 $(eval pubdll := $(PATH_LIB)/$(notdir $(dll)))
     966ifndef $(target)_NOINST
     967$(eval pubdll := $(PATH_BIN)/$(notdir $(dll)))
    968968$(pubdll) : $(dll) $(dir $(pubdll)).dir_created
    969969        $(CP) $(dll) $(pubdll)
     
    11241124
    11251125# publish rule (still need work)
    1126 ifndef $(target)_noinst
    1127 $(eval pubsys := $(PATH_LIB)/$(notdir $(sys)))
    1128 $(pubsys) : $(sys) $(dir $(pubsys)).dir_created
     1126ifndef $(target)_NOINST
     1127$(eval pubsys := $(PATH_BIN)/$(notdir $(sys)))
     1128$(pubsys): $(sys) $(dir $(pubsys)).dir_created
    11291129        $(CP) $(sys) $(pubsys)
    11301130       
    1131 _SYSMODS += $(pubsys)
    1132 _OUT_FILES += $(sys) $(pubsys)
     1131$(eval _SYSMODS += $(pubsys))
     1132$(eval _OUT_FILES += $(sys) $(pubsys))
    11331133else
    1134 _SYSMODS += $(sys)
    1135 _OUT_FILES += $(sys)
     1134$(eval _SYSMODS += $(sys))
     1135$(eval _OUT_FILES += $(sys))
    11361136endif
    11371137_OBJS += $(_OBJS_$(target))
Note: See TracChangeset for help on using the changeset viewer.