about summary refs log tree commit diff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2018-04-30 22:35:54 -0400
committerGraham Christensen <graham@grahamc.com>2018-04-30 22:37:58 -0400
commitab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1 (patch)
treeb32ed86cc9db3763580a26abdbbb94052bf1e9e7 /doc/Makefile
parent8cb0252b1e50a5236793e0fbf39b39510725ccf0 (diff)
downloadnixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.tar
nixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.tar.gz
nixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.tar.bz2
nixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.tar.lz
nixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.tar.xz
nixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.tar.zst
nixlib-ab1648bf0d13afc19bdf7e3d092a3f7ce15a4de1.zip
nixpkgs doc: add format Make target
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 952ef4bfcbb9..8a4612e95f19 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,12 +1,17 @@
 MD_TARGETS=$(addsuffix .xml, $(basename $(wildcard ./*.md ./**/*.md)))
 
 .PHONY: all
-all: validate out/html/index.html out/epub/manual.epub
+all: validate format out/html/index.html out/epub/manual.epub
 
 .PHONY: debug
 debug:
 	nix-shell --run "xmloscopy --docbook5 ./manual.xml ./manual-full.xml"
 
+.PHONY: format
+format:
+	find . -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
+		xmlformat --config-file "$$XMLFORMAT_CONFIG" -i {}
+
 .PHONY: clean
 clean:
 	rm -f ${MD_TARGETS} .version manual-full.xml