nixpkgs/nixos/doc/manual/Makefile

31 lines
760 B
Makefile
Raw Normal View History

2018-05-01 22:03:25 +00:00
.PHONY: all
all: manual-combined.xml format
.PHONY: debug
debug: generated manual-combined.xml
manual-combined.xml: generated *.xml **/*.xml
2018-05-01 23:43:52 +00:00
rm -f ./manual-combined.xml
nix-shell --pure -Q --packages xmloscopy \
2018-05-01 22:03:25 +00:00
--run "xmloscopy --docbook5 ./manual.xml ./manual-combined.xml"
.PHONY: format
format:
nix-shell --pure -Q --packages xmlformat \
--run "find ../../ -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
xmlformat --config-file '../xmlformat.conf' -i {}"
2018-05-01 22:03:25 +00:00
.PHONY: fix-misc-xml
fix-misc-xml:
find . -iname '*.xml' -type f \
-exec ../varlistentry-fixer.rb {} ';'
2018-05-01 22:03:25 +00:00
.PHONY: clean
clean:
rm -f manual-combined.xml generated
generated:
nix-build ../../release.nix \
--attr manualGeneratedSources.x86_64-linux \
--out-link ./generated