diff options
author | Andre Heider | 2010-05-09 13:31:34 +0000 |
---|---|---|
committer | Andre Heider | 2010-05-09 13:31:34 +0000 |
commit | 09a54d765f96c1d6eed8fdbbc42aa3b47fa8f331 (patch) | |
tree | 890c5dba7111b645657193d6b88ca17c32561be6 /Makefile.common | |
parent | 998531a0221646cb23bc053919e341b339522ca5 (diff) | |
download | scummvm-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.common | 2 |
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. |