nixos docs: makefile for formatting

This commit is contained in:
Graham Christensen 2018-05-01 18:03:25 -04:00
parent ab1648bf0d
commit 374a3bdf5b
No known key found for this signature in database
GPG Key ID: ACA1C1D120C83D5C
2 changed files with 26 additions and 2 deletions

View File

@ -1,6 +1,22 @@
debug:
.PHONY: all
all: manual-combined.xml format
.PHONY: debug
debug: generated manual-combined.xml
manual-combined.xml: generated *.xml
rm ./manual-combined.xml
nix-shell --packages xmloscopy \
--run 'xmloscopy --docbook5 ./manual.xml ./manual-combined.xml'
--run "xmloscopy --docbook5 ./manual.xml ./manual-combined.xml"
.PHONY: format
format:
find . -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
xmlformat --config-file "../xmlformat.conf" -i {}
.PHONY: clean
clean:
rm -f manual-combined.xml generated
generated: ./options-to-docbook.xsl
nix-build ../../release.nix \

View File

@ -0,0 +1,8 @@
let
pkgs = import ../../.. { };
in
pkgs.mkShell {
name = "nixos-manual";
buildInputs = with pkgs; [ xmlformat jing xmloscopy ];
}