source: trunk/make/setup.os2allmasm510.mk@ 10366

Last change on this file since 10366 was 9179, checked in by bird, 23 years ago

added -z (Display source line for each error message).

File size: 585 bytes
Line 
1# $Id: setup.os2allmasm510.mk,v 1.2 2002-08-30 20:28:18 bird Exp $
2
3#
4# The tool(s)
5#
6AS = masm
7
8#
9# The flags
10#
11AS_FLAGS = -DOS2 \
12!if "$(BUILD_MODE)" != "RELEASE"
13 -DDEBUG \
14!endif
15 -z -Zd -Zi -Mx -t $(BUILD_DEFINES) $(ALL_DEFINES) $(AS_DEFINES) \
16 $(AS_INCLUDES) $(ALL_INCLUDES) -I$(PATH_INCLUDES:;= -I)
17AS_FLAGS_SYS = $(AS_FLAGS) -DRING0
18
19AS_CMD = echo . && set MASM=$(AS_FLAGS: = ) && $(AS) $(_SRC), $(_DST);
20AS_CMD_SYS = echo . && set MASM=$(AS_FLAGS_SYS: = ) && $(AS) $(_SRC), $(_DST);
21
22
Note: See TracBrowser for help on using the repository browser.