Final VS 2005 + Linux tomfoolery

This commit is contained in:
Scott Ehlert
2008-08-16 20:13:12 +00:00
parent adaf207b58
commit c07d8f3d93
22 changed files with 195 additions and 146 deletions

View File

@ -2,12 +2,12 @@ CPPFILES = amxasm.cpp cexpr.cpp amx_symbol.cpp amx_proc.cpp \
amx_parser.cpp amx_natives.cpp amx_macro.cpp amx_label.cpp \
amx_error.cpp amx_define.cpp amx_data.cpp amx_compiler.cpp
FLAGS = -march=i386
FLAGS = -march=i386 -m32
all: sasm
sasm:
g++ $(FLAGS) -Wall $(CPPFILES) -o sasm -s
g++ $(FLAGS) -DHAVE_STDINT_H -Wall $(CPPFILES) -o sasm -s
clean:
-rm *.o