quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

Makefile (456B)


      1 PANDOC = pandoc
      2 
      3 default: all
      4 
      5 all_markdown = \
      6 	       psa-conditional-inclusion-c.md \
      7 	       psa-driver-developer-guide.md \
      8 	       psa-driver-integration-guide.md \
      9 	       psa-driver-interface.md \
     10 	       # This line is intentionally left blank
     11 
     12 html: $(all_markdown:.md=.html)
     13 pdf: $(all_markdown:.md=.pdf)
     14 all: html pdf
     15 
     16 .SUFFIXES:
     17 .SUFFIXES: .md .html .pdf
     18 
     19 .md.html:
     20 	$(PANDOC) -o $@ $<
     21 .md.pdf:
     22 	$(PANDOC) -o $@ $<
     23 
     24 clean:
     25 	rm -f *.html *.pdf