From a5aac3b551e7df72e39b28074a660f03177b620d Mon Sep 17 00:00:00 2001 From: amai Date: Sat, 3 May 2014 20:05:58 +0200 Subject: [PATCH] Add missing dependencies for dmake --- Makefile | 2 +- tools/dmake.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 584da9b47..3151af86c 100644 --- a/Makefile +++ b/Makefile @@ -238,7 +238,7 @@ test: all check: all ./testrunner -g -q -dmake: tools/dmake.o +dmake: tools/dmake.o cli/filelister.o lib/path.o $(CXX) -std=c++0x -o dmake tools/dmake.o cli/filelister.o lib/path.o -Ilib $(LDFLAGS) ./dmake diff --git a/tools/dmake.cpp b/tools/dmake.cpp index b74a52543..b07ba3844 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -391,7 +391,7 @@ int main(int argc, char **argv) fout << "\t./testrunner\n\n"; fout << "check:\tall\n"; fout << "\t./testrunner -g -q\n\n"; - fout << "dmake:\ttools/dmake.o\n"; + fout << "dmake:\ttools/dmake.o cli/filelister.o lib/path.o\n"; fout << "\t$(CXX) -std=c++0x -o dmake tools/dmake.o cli/filelister.o lib/path.o -Ilib $(LDFLAGS)\n"; fout << "\t./dmake\n\n"; fout << "reduce:\ttools/reduce.o externals/tinyxml/tinyxml2.o $(LIBOBJ)\n";