try to fix "make" target (was broken due to missing comment-char).
This commit is contained in:
parent
cea82c4ee9
commit
3930f2d6bc
16
Makefile
16
Makefile
|
@ -125,14 +125,6 @@ DB2MAN?=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl
|
||||||
XP=xsltproc -''-nonet -''-param man.charmap.use.subset "0"
|
XP=xsltproc -''-nonet -''-param man.charmap.use.subset "0"
|
||||||
MAN_SOURCE=man/cppcheck.1.xml
|
MAN_SOURCE=man/cppcheck.1.xml
|
||||||
|
|
||||||
Validation of library files:
|
|
||||||
ConfigFiles := $(wildcard cfg/*.cfg)
|
|
||||||
ConfigFilesCHECKED := $(patsubst %.cfg,%.checked,$(ConfigFiles))
|
|
||||||
.PHONY: validateCFG
|
|
||||||
%.checked:%.cfg
|
|
||||||
xmllint --noout --relaxng cfg/cppcheck-cfg.rng $<
|
|
||||||
validateCFG: ${ConfigFilesCHECKED}
|
|
||||||
|
|
||||||
|
|
||||||
###### Object Files
|
###### Object Files
|
||||||
|
|
||||||
|
@ -305,6 +297,14 @@ ifdef CFGDIR
|
||||||
install -m 644 cfg/* ${DESTDIR}${CFGDIR}
|
install -m 644 cfg/* ${DESTDIR}${CFGDIR}
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Validation of library files:
|
||||||
|
ConfigFiles := $(wildcard cfg/*.cfg)
|
||||||
|
ConfigFilesCHECKED := $(patsubst %.cfg,%.checked,$(ConfigFiles))
|
||||||
|
.PHONY: validateCFG
|
||||||
|
%.checked:%.cfg
|
||||||
|
xmllint --noout --relaxng cfg/cppcheck-cfg.rng $<
|
||||||
|
validateCFG: ${ConfigFilesCHECKED}
|
||||||
|
|
||||||
|
|
||||||
###### Build
|
###### Build
|
||||||
|
|
||||||
|
|
|
@ -346,15 +346,6 @@ int main(int argc, char **argv)
|
||||||
fout << "XP=xsltproc -''-nonet -''-param man.charmap.use.subset \"0\"\n";
|
fout << "XP=xsltproc -''-nonet -''-param man.charmap.use.subset \"0\"\n";
|
||||||
fout << "MAN_SOURCE=man/cppcheck.1.xml\n\n";
|
fout << "MAN_SOURCE=man/cppcheck.1.xml\n\n";
|
||||||
|
|
||||||
fout << "Validation of library files:\n";
|
|
||||||
fout << "ConfigFiles := $(wildcard cfg/*.cfg)\n";
|
|
||||||
fout << "ConfigFilesCHECKED := $(patsubst %.cfg,%.checked,$(ConfigFiles))\n";
|
|
||||||
fout << ".PHONY: validateCFG\n";
|
|
||||||
fout << "%.checked:%.cfg\n";
|
|
||||||
fout << "\txmllint --noout --relaxng cfg/cppcheck-cfg.rng $<\n";
|
|
||||||
fout << "validateCFG: ${ConfigFilesCHECKED}\n\n";
|
|
||||||
|
|
||||||
|
|
||||||
fout << "\n###### Object Files\n\n";
|
fout << "\n###### Object Files\n\n";
|
||||||
fout << "LIBOBJ = " << objfile(libfiles[0]);
|
fout << "LIBOBJ = " << objfile(libfiles[0]);
|
||||||
for (size_t i = 1; i < libfiles.size(); ++i)
|
for (size_t i = 1; i < libfiles.size(); ++i)
|
||||||
|
@ -409,6 +400,14 @@ int main(int argc, char **argv)
|
||||||
fout << "\tinstall -d ${DESTDIR}${CFGDIR}\n";
|
fout << "\tinstall -d ${DESTDIR}${CFGDIR}\n";
|
||||||
fout << "\tinstall -m 644 cfg/* ${DESTDIR}${CFGDIR}\n";
|
fout << "\tinstall -m 644 cfg/* ${DESTDIR}${CFGDIR}\n";
|
||||||
fout << "endif\n\n";
|
fout << "endif\n\n";
|
||||||
|
fout << "# Validation of library files:\n";
|
||||||
|
fout << "ConfigFiles := $(wildcard cfg/*.cfg)\n";
|
||||||
|
fout << "ConfigFilesCHECKED := $(patsubst %.cfg,%.checked,$(ConfigFiles))\n";
|
||||||
|
fout << ".PHONY: validateCFG\n";
|
||||||
|
fout << "%.checked:%.cfg\n";
|
||||||
|
fout << "\txmllint --noout --relaxng cfg/cppcheck-cfg.rng $<\n";
|
||||||
|
fout << "validateCFG: ${ConfigFilesCHECKED}\n\n";
|
||||||
|
|
||||||
|
|
||||||
fout << "\n###### Build\n\n";
|
fout << "\n###### Build\n\n";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue