amxmodx/compiler/scasm/Makefile

15 lines
314 B
Makefile
Raw Normal View History

2004-08-11 10:01:56 +00:00
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
2008-08-16 20:13:12 +00:00
FLAGS = -march=i386 -m32
2004-08-11 10:01:56 +00:00
all: sasm
sasm:
2008-08-16 20:13:12 +00:00
g++ $(FLAGS) -DHAVE_STDINT_H -Wall $(CPPFILES) -o sasm -s
2004-08-11 10:01:56 +00:00
clean:
-rm *.o
-rm sasm