Makefile 455 B

12345678910111213141516171819202122232425262728293031
  1. MODULE_TOPDIR = ../..
  2. include $(MODULE_TOPDIR)/include/Make/Dir.make
  3. include $(MODULE_TOPDIR)/include/Make/Python.make
  4. PYDIR = $(ETC)/python/grass
  5. SUBDIRS = \
  6. app \
  7. benchmark \
  8. exceptions \
  9. grassdb \
  10. gunittest \
  11. imaging \
  12. jupyter \
  13. pydispatch \
  14. pygrass \
  15. script \
  16. semantic_label \
  17. temporal \
  18. utils
  19. default: $(PYDIR)/__init__.py
  20. $(MAKE) subdirs
  21. $(PYDIR):
  22. $(MKDIR) $@
  23. $(PYDIR)/__init__.py: __init__.py | $(PYDIR)
  24. $(INSTALL_DATA) $< $@