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/scaninc | |
parent | a8db5642017a0c4a3a5df1aa36abca9af5ea4454 (diff) |
suppress make tools noise
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 3e1c031a8..32c16c31f 100644 --- a/tools/scaninc/Makefile +++ b/tools/scaninc/Makefile @@ -6,7 +6,10 @@ SRCS = scaninc.cpp c_file.cpp asm_file.cpp HEADERS := scaninc.h asm_file.h c_file.h -.PHONY: clean +.PHONY: all clean + +all: scaninc + @: scaninc: $(SRCS) $(HEADERS) $(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS) |