Makefile 307 B

12345678910111213
  1. all: index.html spec.html radiomanifest.zip
  2. testXMLs := $(shell find shows radio-manifest -type f -name '*.xml')
  3. %.html: %.asciidoc
  4. asciidoctor -b html5 $<
  5. radiomanifest.zip: radio-manifest.xsd radio-manifest/Makefile shows/Makefile $(testXMLs)
  6. zip -r $@ $^
  7. test:
  8. make -C radio-manifest/
  9. .PHONY: all