Changeset 640 for trunk/kBuild/header.kmk
- Timestamp:
- Dec 1, 2006, 8:42:42 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r601 r640 508 508 DEFAULT_MAKEFILE := Makefile.kmk makefile.kmk Makefile makefile 509 509 510 ## PROPS_TOOLS 511 # This is a subset of the other PROPS 512 PROPS_TOOLS := TOOL CTOOL CXXTOOL ASTOOL ARTOOL LDTOOL FETCHTOOL UNPACKTOOL PATCHTOOL 513 510 514 ## PROPS_SINGLE 511 515 # The list of non-accumulative target properties. 512 516 # A Config.kmk file can add it's own properties to this list and kBuild 513 517 # will do the necessary inheritance from templates to targets. 514 PROPS_SINGLE := TOOL ARTOOL CTOOL CXXTOOL ASTOOL LDTOOL INST NOINST518 PROPS_SINGLE := $(PROPS_TOOLS) INST NOINST BLD_TYPE BLD_TRG BLD_TRG_ARCH BLD_TRG_CPU FETCHDIR 515 519 516 520 ## PROPS_DEFERRED … … 528 532 ASOPTS ASFLAGS ASDEFS ASINCS \ 529 533 LDFLAGS LIBS LIBPATH \ 530 BLD_TYPE BLD_TRG BLD_TRG_ARCH BLD_TRG_CPU \531 534 SYSSUFF EXESUFF DLLSUFF LIBSUFF ARLIBSUFF \ 532 533 534 ## PROPS_TOOLS 535 # This is a subset of the other PROPS 536 PROPS_TOOLS := TOOL CTOOL CXXTOOL ASTOOL ARTOOL LDTOOL 535 FETCHFLAGS UNPACKFLAGS PATCHFLAGS 537 536 538 537 … … 544 543 # The PASS_<passname>_pass variable is the lowercased passname. 545 544 # 545 546 ## PASS: fetches 547 # This pass fetches and unpacks things needed to complete the build. 548 PASS_FETCHES := Fetches 549 PASS_FETCHES_trgs := 550 PASS_FETCHES_vars := _FETCHES 551 PASS_FETCHES_pass := fetches 552 553 ## PASS: patches 554 # This pass applies patches. 555 PASS_PATCHES := Patches 556 PASS_PATCHES_trgs := 557 PASS_PATCHES_vars := _PATCHES 558 PASS_PATCHES_pass := patches 546 559 547 560 ## PASS: bldprogs … … 621 634 # The passes that should be defined. This must include 622 635 # all passes mentioned by DEFAULT_PASSES. 623 PASSES := $(DEFAULT_PASSES) NOTHING CLEAN636 PASSES := FETCHES PATCHES $(DEFAULT_PASSES) NOTHING CLEAN 624 637 625 638
Note:
See TracChangeset
for help on using the changeset viewer.