2018-05-01 23:03:25 +01:00
|
|
|
.PHONY: all
|
|
|
|
all: manual-combined.xml format
|
|
|
|
|
|
|
|
.PHONY: debug
|
|
|
|
debug: generated manual-combined.xml
|
|
|
|
|
2018-10-04 03:33:03 +01:00
|
|
|
manual-combined.xml: generated *.xml **/*.xml
|
2018-05-02 00:43:52 +01:00
|
|
|
rm -f ./manual-combined.xml
|
2019-03-22 13:47:47 +00:00
|
|
|
nix-shell --pure -Q --packages xmloscopy \
|
2018-05-01 23:03:25 +01:00
|
|
|
--run "xmloscopy --docbook5 ./manual.xml ./manual-combined.xml"
|
|
|
|
|
|
|
|
.PHONY: format
|
|
|
|
format:
|
2019-03-22 13:47:47 +00:00
|
|
|
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 23:03:25 +01:00
|
|
|
|
2018-06-01 01:26:27 +01:00
|
|
|
.PHONY: fix-misc-xml
|
|
|
|
fix-misc-xml:
|
|
|
|
find . -iname '*.xml' -type f \
|
|
|
|
-exec ../varlistentry-fixer.rb {} ';'
|
|
|
|
|
2018-05-01 23:03:25 +01:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f manual-combined.xml generated
|
2018-04-28 09:00:55 +01:00
|
|
|
|
2019-09-06 11:02:25 +01:00
|
|
|
generated:
|
2018-04-28 09:00:55 +01:00
|
|
|
nix-build ../../release.nix \
|
|
|
|
--attr manualGeneratedSources.x86_64-linux \
|
|
|
|
--out-link ./generated
|