From 46aebe9a9cc1f55c32cbfe5b9d7c70ed99597da5 Mon Sep 17 00:00:00 2001 From: Van de Bugger Date: Thu, 11 Aug 2016 14:57:50 +1000 Subject: Bug [#1845]. Allow recreating deps.mak if ever deleted. --- gtk/makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gtk/makefile b/gtk/makefile index be3214b3c..f75d5ba5e 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -102,8 +102,9 @@ clean: analyze: clang --analyze $(CONFIGFLAGS) $(CXXTFLAGS) $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx -deps: - $(CXX) -MM $(CONFIGFLAGS) $(CXXTFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx | sed -e 's/\/usr.* //' | grep [a-zA-Z] >deps.mak +deps: deps.mak +deps.mak: + $(CXX) -MM $(CONFIGFLAGS) $(CXXTFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx | sed -e 's/\/usr.* //' | grep [a-zA-Z] > $@ $(COMPLIB): Accessor.o CharacterSet.o LexerBase.o LexerModule.o LexerSimple.o StyleContext.o WordList.o \ CharClassify.o Decoration.o Document.o PerLine.o Catalogue.o CallTip.o CaseConvert.o CaseFolder.o \ -- cgit v1.2.3