mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +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
|
||||
# Variables this makefile accepts:
|
||||
|
@ -607,7 +607,7 @@ endif # MK_IMPLIBONLY
|
|||
%.o: %.s
|
||||
$(AS) $(TARGET_ASFLAGS) -c $< -o $@
|
||||
%.o: %.asm
|
||||
$(NASM_CMD) $(TARGET_NFLAGS) $< -o $@
|
||||
$(NASM_CMD) $(NFLAGS) $(TARGET_NFLAGS) $< -o $@
|
||||
%.coff: %.rc
|
||||
$(RC) $(TARGET_RCFLAGS) $(RCINC) $< -o $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue