diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-07-23 16:17:00 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-07-23 16:17:00 -0400 |
commit | 6ff1426abed52c9642a6ccd5a6eda7210d0637e7 (patch) | |
tree | db4ae0c65521016af55992ba2da38b0005904455 /tools/preproc | |
parent | fd53bbc464eef80d91246d0abdbcd8c5cbb4c912 (diff) |
Quieter "make tools"
Diffstat (limited to 'tools/preproc')
-rw-r--r-- | tools/preproc/Makefile | 5 |
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) |