diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2017-05-22 20:04:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 20:04:02 -0400 |
commit | 587603e40488511e8c090c0b551b538f6d264b7e (patch) | |
tree | cf9cb7084dfbc52deffd261b7ccd24c3a75d284f /tools/preproc | |
parent | ea181bea7652e6ea28705302ce7e85998e248986 (diff) | |
parent | cb975fbf00519c90c05c0dfaaf3f7a22ad8449ab (diff) |
Merge pull request #3 from PikalaxALT/field_map_obj
Field map obj
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 |