Makefile 369 B

12345678910111213141516171819
  1. all:
  2. @echo "Select one of:"
  3. @echo " - make doc"
  4. @echo " - make package"
  5. @echo " - make clean"
  6. doc: index.html
  7. index.html: yasos.scrbl
  8. chibi-doc yasos.scrbl > index.html
  9. clean:
  10. rm -f index.html
  11. rm -f yasos-*.tgz
  12. package: doc
  13. snow-chibi package --authors="Jason K. MacDuffie" --description="Yet Another Scheme Object System" --license=mit yasos.sld