12345678910111213141516171819202122232425262728293031 |
- MODULE_TOPDIR = ../..
- include $(MODULE_TOPDIR)/include/Make/Dir.make
- include $(MODULE_TOPDIR)/include/Make/Python.make
- PYDIR = $(ETC)/python/grass
- SUBDIRS = \
- app \
- benchmark \
- exceptions \
- grassdb \
- gunittest \
- imaging \
- jupyter \
- pydispatch \
- pygrass \
- script \
- semantic_label \
- temporal \
- utils
- default: $(PYDIR)/__init__.py
- $(MAKE) subdirs
- $(PYDIR):
- $(MKDIR) $@
- $(PYDIR)/__init__.py: __init__.py | $(PYDIR)
- $(INSTALL_DATA) $< $@
|