mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
this fixes the problem with NASM invocation in make
svn path=/trunk/; revision=46
This commit is contained in:
parent
7967ac94a2
commit
9a55f0f7ed
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ CC = $(PREFIX)gcc
|
|||
NATIVE_CC = gcc
|
||||
CFLAGS = -O2 -I../../../include -I../../include -I../include -fno-builtin $(DEFINES) -Wall -Wstrict-prototypes
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
NASM = nasm
|
||||
ASM = nasm
|
||||
NFLAGS = -i../include/ -f$(NASM_FORMAT)
|
||||
LD = $(PREFIX)ld
|
||||
NM = $(PREFIX)nm
|
||||
|
@ -59,7 +59,7 @@ CPP = $(PREFIX)cpp
|
|||
%.o: %.cc
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
%.o: %.asm
|
||||
$(NASM) $(NFLAGS) $< -o $@
|
||||
$(ASM) $(NFLAGS) $< -o $@
|
||||
|
||||
|
||||
RULES_MAK_INCLUDED = 1
|
||||
|
|
Loading…
Reference in a new issue