Makefile 272 B

12345678910111213141516
  1. manifests = python.manifest
  2. all debug: $(manifests)
  3. test_targets = testsamplebash
  4. test: all $(test_targets)
  5. %.manifest: %.manifest.template
  6. make -C .. python/$@ appdir=python/
  7. clean: clean-manifests
  8. distclean: clean-manifests
  9. clean-manifests:
  10. rm -rf $(manifests)