diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-10 03:20:02 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-10 03:20:02 -0400 |
commit | 10f798323e88e4cdf8fe881956dd5ad41121e1a3 (patch) | |
tree | 3871c3b6abb80424dc77870f1e1ad7ce38a3afe2 /tools/preproc | |
parent | 16fd2ca3856668cd4e7cb5e94d3022ac5edce8a3 (diff) | |
parent | fe13cf593a7c14480de940e413177586cc8eae2e (diff) |
finish decompiling player_pc.c
Diffstat (limited to 'tools/preproc')
-rw-r--r-- | tools/preproc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/preproc/Makefile b/tools/preproc/Makefile index 2d577c79f..1f4c58e21 100644 --- a/tools/preproc/Makefile +++ b/tools/preproc/Makefile @@ -1,6 +1,6 @@ CXX := g++ -CXXFLAGS := -std=c++11 -O2 -Wall -Wno-switch +CXXFLAGS := -std=c++11 -O2 -s -Wall -Wno-switch SRCS := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \ utf8.cpp @@ -11,7 +11,7 @@ HEADERS := asm_file.h c_file.h char_util.h charmap.h preproc.h string_parser.h \ .PHONY: clean preproc: $(SRCS) $(HEADERS) - $(CXX) $(CXXFLAGS) $(SRCS) -o $@ + $(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS) clean: $(RM) preproc preproc.exe |