Add missing dependencies for dmake
This commit is contained in:
parent
1903d95015
commit
a5aac3b551
2
Makefile
2
Makefile
|
@ -238,7 +238,7 @@ test: all
|
||||||
check: all
|
check: all
|
||||||
./testrunner -g -q
|
./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)
|
$(CXX) -std=c++0x -o dmake tools/dmake.o cli/filelister.o lib/path.o -Ilib $(LDFLAGS)
|
||||||
./dmake
|
./dmake
|
||||||
|
|
||||||
|
|
|
@ -391,7 +391,7 @@ int main(int argc, char **argv)
|
||||||
fout << "\t./testrunner\n\n";
|
fout << "\t./testrunner\n\n";
|
||||||
fout << "check:\tall\n";
|
fout << "check:\tall\n";
|
||||||
fout << "\t./testrunner -g -q\n\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$(CXX) -std=c++0x -o dmake tools/dmake.o cli/filelister.o lib/path.o -Ilib $(LDFLAGS)\n";
|
||||||
fout << "\t./dmake\n\n";
|
fout << "\t./dmake\n\n";
|
||||||
fout << "reduce:\ttools/reduce.o externals/tinyxml/tinyxml2.o $(LIBOBJ)\n";
|
fout << "reduce:\ttools/reduce.o externals/tinyxml/tinyxml2.o $(LIBOBJ)\n";
|
||||||
|
|
Loading…
Reference in New Issue