aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorAndre Heider2010-05-09 13:31:34 +0000
committerAndre Heider2010-05-09 13:31:34 +0000
commit09a54d765f96c1d6eed8fdbbc42aa3b47fa8f331 (patch)
tree890c5dba7111b645657193d6b88ca17c32561be6 /Makefile.common
parent998531a0221646cb23bc053919e341b339522ca5 (diff)
downloadscummvm-rg350-09a54d765f96c1d6eed8fdbbc42aa3b47fa8f331.tar.gz
scummvm-rg350-09a54d765f96c1d6eed8fdbbc42aa3b47fa8f331.tar.bz2
scummvm-rg350-09a54d765f96c1d6eed8fdbbc42aa3b47fa8f331.zip
Fallback to the nasm compatible yasm.
svn-id: r48980
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 1aa61b1709..419090a705 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -132,7 +132,7 @@ ifdef USE_NASM
# Build rule for NASM assembler files
%.o: %.asm
$(QUIET)$(MKDIR) $(*D)
- $(QUIET_NASM)$(NASM) -O1 $(NASMFLAGS) -g -o $*.o $(<)
+ $(QUIET_NASM)$(NASM) $(NASMFLAGS) -o $*.o $(<)
endif
# Include the dependency tracking files.