Changeset 667 for trunk/kBuild/tools/ALP.kmk
- Timestamp:
- Dec 6, 2006, 5:00:16 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/ALP.kmk
r665 r667 4 4 # kBuild Tool Config - ALP or later. 5 5 # 6 # Copyright (c) 2005 knut st. osmundsen <bird-srcspam@anduin.net>6 # Copyright (c) 2005-2006 knut st. osmundsen <bird-srcspam@anduin.net> 7 7 # 8 8 # … … 25 25 # 26 26 27 TOOL_ALP := The IBM Assembly Language Processor 27 28 28 TOOL_ALP := IBM Assembly Language Processor 29 #ifndef PATH_TOOL_ALP 30 #PATH_TOOL_ALP := $(sort $(wildcard $(PATH_DEV_BLD)/alp/v*.*)) 31 #ifneq ($(PATH_TOOL_ALP),) 32 #PATH_TOOL_ALP := $(call lastword,$(PATH_TOOL_ALP)) 33 #endif 34 #endif 29 # Tool Specific Properties 30 ifndef PATH_TOOL_ALP 31 PATH_TOOL_ALP := $(sort $(wildcard $(PATH_DEVTOOLS_BLD)/alp/v*.*)) 32 ifneq ($(PATH_TOOL_ALP),) 33 PATH_TOOL_ALP := $(call lastword,$(PATH_TOOL_ALP)) 34 endif 35 endif 36 ifneq ($(PATH_TOOL_ALP),) 37 TOOL_ALP_AS ?= $(PATH_TOOL_ALP)/alp$(HOSTSUFF_EXE) 38 else 39 TOOL_ALP_AS ?= alp$(HOSTSUFF_EXE) 40 endif 35 41 36 ifneq ($(PATH_TOOL_ALP),) 37 TOOL_ALP_AS ?= $(PATH_TOOL_ALP)/alp$(HOSTSUFF_EXE) 38 else 39 TOOL_ALP_AS ?= alp$(HOSTSUFF_EXE) 40 endif 41 TOOL_ALP_ASFLAGS ?= -Mb 42 # General Properties used by kBuild 43 TOOL_ALP_ASFLAGS ?= -Mb 42 44 43 45
Note:
See TracChangeset
for help on using the changeset viewer.