Added NFLAGS when calling nasm.

svn path=/trunk/; revision=3163
This commit is contained in:
Eugene Ingerman 2002-06-30 02:40:24 +00:00
parent 7ec506fe21
commit a6b20c5fda

View file

@ -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 $@