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/scaninc/Makefile | |
parent | 16fd2ca3856668cd4e7cb5e94d3022ac5edce8a3 (diff) | |
parent | fe13cf593a7c14480de940e413177586cc8eae2e (diff) |
finish decompiling player_pc.c
Diffstat (limited to 'tools/scaninc/Makefile')
-rw-r--r-- | tools/scaninc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/scaninc/Makefile b/tools/scaninc/Makefile index 71c4389ef..d33dee6d2 100644 --- a/tools/scaninc/Makefile +++ b/tools/scaninc/Makefile @@ -1,6 +1,6 @@ CXX = g++ -CXXFLAGS = -Wall -std=c++11 -O2 +CXXFLAGS = -Wall -std=c++11 -O2 -s SRCS = scaninc.cpp c_file.cpp asm_file.cpp @@ -9,7 +9,7 @@ HEADERS := scaninc.h asm_file.h c_file.h .PHONY: clean scaninc: $(SRCS) $(HEADERS) - $(CXX) $(CXXFLAGS) $(SRCS) -o $@ + $(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS) clean: $(RM) scaninc scaninc.exe |