miniroon

Simplistic macaroon-based authorization for Unix systems
git clone https://ccx.te2000.cz/git/miniroon
Log | Files | Refs | README

Makefile (217B)


      1 all: miniroon_spec.html test
      2 .PHONY: all
      3 
      4 miniroon_spec.html: miniroon_spec.pl spec2html.awk
      5 	awk -f spec2html.awk miniroon_spec.pl >'$@.new'
      6 	mv '$@.new' '$@'
      7 
      8 test:
      9 	swipl -g run_tests -t halt tests.pl
     10 .PHONY: test