Skip to content

Commit

Permalink
Hide first makefile attempt to include makefile.dep
Browse files Browse the repository at this point in the history
This is to avoid having a warning saying that there is no makefile.dep
file, which will be generated right after the warning and then
included in the Makefile.
  • Loading branch information
vincent committed Aug 16, 2016
1 parent 23ed953 commit b5606dd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ lua-format:

makefile.dep:
$(CXX) -MM $(CPPFLAGS) $(SRCS) > $@
include makefile.dep
-include makefile.dep

# These the old names of scripts that have been renamed or deleted. Any
# scripts with these names will be deleted from the installation
Expand Down
2 changes: 1 addition & 1 deletion libnetutil/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Makefile: Makefile.in

makefile.dep:
$(CXX) -MM $(CPPFLAGS) $(SRCS) > $@
include makefile.dep
-include makefile.dep
2 changes: 1 addition & 1 deletion ncat/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -209,5 +209,5 @@ check: $(TARGET) $(TEST_PROGS)

makefile.dep:
$(CC) -MM $(CPPFLAGS) $(SRCS) > $@
include makefile.dep
-include makefile.dep

2 changes: 1 addition & 1 deletion nmap-update/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ Makefile: Makefile.in

makefile.dep:
$(CC) -MM $(CPPFLAGS) $(C_FILES) > $@
include makefile.dep
-include makefile.dep

.PHONY: all clean
2 changes: 1 addition & 1 deletion nping/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ config.status: configure

makefile.dep:
$(CXX) -MM $(CPPFLAGS) $(SRCS) > $@
include makefile.dep
-include makefile.dep
2 changes: 1 addition & 1 deletion nsock/src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ config.status: configure

makefile.dep:
$(CC) -MM $(CPPFLAGS) $(SRCS) > $@
include makefile.dep
-include makefile.dep

0 comments on commit b5606dd

Please sign in to comment.