Add missing dependencies for dmake

This commit is contained in:
amai 2014-05-03 20:05:58 +02:00
parent 1903d95015
commit a5aac3b551
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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";