diff options
| author | Felix Wallin <nibbler.v1@gmail.com> | 2010-11-02 15:44:55 (GMT) |
|---|---|---|
| committer | Felix Wallin <nibbler.v1@gmail.com> | 2010-11-02 15:44:55 (GMT) |
| commit | 79a36b526d4e5365727aff5c2bcda225a53bf5d6 (patch) | |
| tree | c9822ed00780cc78c0d46f9e8c9a636800dce82a | |
| parent | 401000098a1dae5e42747e86aa9bfff228ae652f (diff) | |
| download | powder-79a36b526d4e5365727aff5c2bcda225a53bf5d6.zip powder-79a36b526d4e5365727aff5c2bcda225a53bf5d6.tar.gz | |
OHNOES powder-debug didn't work on 32bit systems.. for obvious reasons
| -rwxr-xr-x | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -13,9 +13,10 @@ WIN32_TARG := powder-sse.exe powder-sse2.exe powder: $(SOURCES) $(COMPILER) -DINTERNAL -o$@ $(CFLAGS) $(OFLAGS) $(LFLAGS) $(MFLAGS_SSE3) $(SOURCES) -DLIN64 +powder-debug-64: $(SOURCES) + $(COMPILER) -m64 -o$@ $(FLAGS_DBUG) -DLIN64 $(SOURCES) -Iincludes/ powder-debug: $(SOURCES) - $(COMPILER) -m64 -o$@ $(FLAGS_DBUG) -DLIN64 $(SOURCES) -Iincludes/ -DLIN64 - + $(COMPILER) -m32 -o$@ $(FLAGS_DBUG) -DLIN32 $(SOURCES) -Iincludes/ powder-sse3: $(SOURCES) $(COMPILER) -m32 -o$@ $(CFLAGS) $(OFLAGS) $(LFLAGS) $(MFLAGS_SSE3) $(SOURCES) -DLIN32 strip $@ |
