diff options
author | yenatch <yenatch@gmail.com> | 2018-04-06 01:09:08 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2018-04-06 01:09:08 -0400 |
commit | 669ec39a834bf8aadb32f8223182ee8429fe68ec (patch) | |
tree | e2fc6bbc2db5ff7b2cd684f5cfd857c0716fcd97 /tools/preproc | |
parent | a8db5642017a0c4a3a5df1aa36abca9af5ea4454 (diff) |
suppress make tools noise
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 ec4a5f365..bf1c11b4b 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) |