dmake: use 'make reduce' to compile the reduce program
This commit is contained in:
parent
e0a902e071
commit
9877b77291
3
Makefile
3
Makefile
|
@ -204,6 +204,9 @@ check: all
|
||||||
dmake: tools/dmake.cpp
|
dmake: tools/dmake.cpp
|
||||||
$(CXX) -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib
|
$(CXX) -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib
|
||||||
|
|
||||||
|
reduce: tools/reduce.cpp
|
||||||
|
$(CXX) -o reduce tools/reduce.cpp -Ilib $(LIBOBJ)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f build/*.o lib/*.o cli/*.o test/*.o externals/tinyxml/*.o testrunner cppcheck cppcheck.1
|
rm -f build/*.o lib/*.o cli/*.o test/*.o externals/tinyxml/*.o testrunner cppcheck cppcheck.1
|
||||||
|
|
||||||
|
|
|
@ -352,6 +352,8 @@ int main(int argc, char **argv)
|
||||||
fout << "\t./testrunner -g -q\n\n";
|
fout << "\t./testrunner -g -q\n\n";
|
||||||
fout << "dmake:\ttools/dmake.cpp\n";
|
fout << "dmake:\ttools/dmake.cpp\n";
|
||||||
fout << "\t$(CXX) -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib\n\n";
|
fout << "\t$(CXX) -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib\n\n";
|
||||||
|
fout << "reduce:\ttools/reduce.cpp\n";
|
||||||
|
fout << "\t$(CXX) -o reduce tools/reduce.cpp -Ilib $(LIBOBJ)\n\n";
|
||||||
fout << "clean:\n";
|
fout << "clean:\n";
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
fout << "\tdel build\\*.o\n\tdel lib\\*.o\n\tdel cli\\*.o\n\tdel test\\*.o\n\tdel *.exe\n";
|
fout << "\tdel build\\*.o\n\tdel lib\\*.o\n\tdel cli\\*.o\n\tdel test\\*.o\n\tdel *.exe\n";
|
||||||
|
|
Loading…
Reference in New Issue