summaryrefslogtreecommitdiff
path: root/tools/preproc
diff options
context:
space:
mode:
authorultima-soul <akshayjhanji@hotmail.com>2019-08-04 15:23:09 -0700
committerultima-soul <akshayjhanji@hotmail.com>2019-08-04 15:23:09 -0700
commited90bf2430290853bd9376d53c70055fa07634be (patch)
tree39f67b5cbd0c0ef9e1a4763a052fd07924349940 /tools/preproc
parentbbc7c6ccfc7d59f61f406849f752fdd5038a6a80 (diff)
parentd58bf398b2b83a326d23d14d531de7f45a1058bb (diff)
Merge branch 'master' into pokedex_2
Diffstat (limited to 'tools/preproc')
-rw-r--r--tools/preproc/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/preproc/Makefile b/tools/preproc/Makefile
index 3d3275819..63dedda1f 100644
--- a/tools/preproc/Makefile
+++ b/tools/preproc/Makefile
@@ -8,7 +8,10 @@ SRCS := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \
HEADERS := asm_file.h c_file.h char_util.h charmap.h preproc.h string_parser.h \
utf8.h
-.PHONY: clean
+.PHONY: all clean
+
+all: preproc
+ @:
preproc: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)