mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Added NFLAGS when calling nasm.
svn path=/trunk/; revision=3163
This commit is contained in:
parent
7ec506fe21
commit
a6b20c5fda
1 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
# $Id: helper.mk,v 1.17 2002/06/18 21:51:11 dwelch Exp $
|
# $Id: helper.mk,v 1.18 2002/06/30 02:40:24 ei Exp $
|
||||||
#
|
#
|
||||||
# Helper makefile for ReactOS modules
|
# Helper makefile for ReactOS modules
|
||||||
# Variables this makefile accepts:
|
# Variables this makefile accepts:
|
||||||
|
@ -607,7 +607,7 @@ endif # MK_IMPLIBONLY
|
||||||
%.o: %.s
|
%.o: %.s
|
||||||
$(AS) $(TARGET_ASFLAGS) -c $< -o $@
|
$(AS) $(TARGET_ASFLAGS) -c $< -o $@
|
||||||
%.o: %.asm
|
%.o: %.asm
|
||||||
$(NASM_CMD) $(TARGET_NFLAGS) $< -o $@
|
$(NASM_CMD) $(NFLAGS) $(TARGET_NFLAGS) $< -o $@
|
||||||
%.coff: %.rc
|
%.coff: %.rc
|
||||||
$(RC) $(TARGET_RCFLAGS) $(RCINC) $< -o $@
|
$(RC) $(TARGET_RCFLAGS) $(RCINC) $< -o $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue