diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-08-01 21:04:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-01 21:04:28 -0400 |
commit | 201418cd4d3e0c96b8f7f99e6242f2a08b5041b7 (patch) | |
tree | 57cbe7905db69e8f7e88327c0d665b49f2dd67fb /tools/scaninc | |
parent | 00cf527c16d02fc912666d97a49dc7fedf996225 (diff) | |
parent | 6032159d1bc099d4ed112e5e387ebba1d35fe6a9 (diff) |
Merge pull request #87 from PikalaxALT/title_screen
Title screen
Diffstat (limited to 'tools/scaninc')
-rw-r--r-- | tools/scaninc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/scaninc/Makefile b/tools/scaninc/Makefile index 53c9d0060..1516f159c 100644 --- a/tools/scaninc/Makefile +++ b/tools/scaninc/Makefile @@ -6,7 +6,10 @@ SRCS = scaninc.cpp c_file.cpp asm_file.cpp source_file.cpp HEADERS := scaninc.h asm_file.h c_file.h source_file.h -.PHONY: clean +.PHONY: all clean + +all: scaninc + @: scaninc: $(SRCS) $(HEADERS) $(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS) |