dmake: "make dmake" now also runs the binary after compilation.
This commit is contained in:
parent
110f956029
commit
4481015bdc
|
@ -81,7 +81,6 @@ script:
|
||||||
# check if Makefile needs to be regenerated
|
# check if Makefile needs to be regenerated
|
||||||
- git clean -dfx
|
- git clean -dfx
|
||||||
- make dmake
|
- make dmake
|
||||||
- ./dmake
|
|
||||||
# now, if dmake modified the makefile, return false!
|
# now, if dmake modified the makefile, return false!
|
||||||
- git diff --exit-code
|
- git diff --exit-code
|
||||||
|
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -209,6 +209,8 @@ endif
|
||||||
|
|
||||||
|
|
||||||
EXTOBJ += $(TINYXML)
|
EXTOBJ += $(TINYXML)
|
||||||
|
.PHONY: dmake
|
||||||
|
|
||||||
|
|
||||||
###### Targets
|
###### Targets
|
||||||
|
|
||||||
|
@ -228,6 +230,7 @@ check: all
|
||||||
|
|
||||||
dmake: tools/dmake.cpp
|
dmake: tools/dmake.cpp
|
||||||
$(CXX) -std=c++0x -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib $(LDFLAGS)
|
$(CXX) -std=c++0x -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib $(LDFLAGS)
|
||||||
|
./dmake
|
||||||
|
|
||||||
reduce: tools/reduce.cpp
|
reduce: tools/reduce.cpp
|
||||||
$(CXX) -std=c++0x -g -o reduce tools/reduce.cpp -Ilib -Iexternals/tinyxml lib/*.cpp externals/tinyxml/tinyxml2.cpp
|
$(CXX) -std=c++0x -g -o reduce tools/reduce.cpp -Ilib -Iexternals/tinyxml lib/*.cpp externals/tinyxml/tinyxml2.cpp
|
||||||
|
|
|
@ -365,6 +365,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
makeExtObj(fout, externalfiles);
|
makeExtObj(fout, externalfiles);
|
||||||
|
|
||||||
|
fout << ".PHONY: dmake\n\n";
|
||||||
fout << "\n###### Targets\n\n";
|
fout << "\n###### Targets\n\n";
|
||||||
fout << "cppcheck: $(LIBOBJ) $(CLIOBJ) $(EXTOBJ)\n";
|
fout << "cppcheck: $(LIBOBJ) $(CLIOBJ) $(EXTOBJ)\n";
|
||||||
fout << "\t$(CXX) $(CPPFLAGS) $(CXXFLAGS) -std=c++0x -o cppcheck $(CLIOBJ) $(LIBOBJ) $(EXTOBJ) $(LIBS) $(LDFLAGS) $(RDYNAMIC)\n\n";
|
fout << "\t$(CXX) $(CPPFLAGS) $(CXXFLAGS) -std=c++0x -o cppcheck $(CLIOBJ) $(LIBOBJ) $(EXTOBJ) $(LIBS) $(LDFLAGS) $(RDYNAMIC)\n\n";
|
||||||
|
@ -376,7 +377,8 @@ int main(int argc, char **argv)
|
||||||
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.cpp\n";
|
fout << "dmake:\ttools/dmake.cpp\n";
|
||||||
fout << "\t$(CXX) -std=c++0x -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib $(LDFLAGS)\n\n";
|
fout << "\t$(CXX) -std=c++0x -o dmake tools/dmake.cpp cli/filelister.cpp lib/path.cpp -Ilib $(LDFLAGS)\n";
|
||||||
|
fout << "\t./dmake\n\n";
|
||||||
fout << "reduce:\ttools/reduce.cpp\n";
|
fout << "reduce:\ttools/reduce.cpp\n";
|
||||||
fout << "\t$(CXX) -std=c++0x -g -o reduce tools/reduce.cpp -Ilib -Iexternals/tinyxml lib/*.cpp externals/tinyxml/tinyxml2.cpp\n\n";
|
fout << "\t$(CXX) -std=c++0x -g -o reduce tools/reduce.cpp -Ilib -Iexternals/tinyxml lib/*.cpp externals/tinyxml/tinyxml2.cpp\n\n";
|
||||||
fout << "clean:\n";
|
fout << "clean:\n";
|
||||||
|
|
Loading…
Reference in New Issue