Makefile 333 B

1234567891011121314
  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 shows.xsd radio-manifest/Makefile shows/Makefile $(testXMLs)
  6. zip -r $@ $^
  7. test:
  8. make -C shows/
  9. make -C radio-manifest/
  10. .PHONY: all