Makefile 1.1 KB

12345678910111213141516171819202122232425262728
  1. MODULE_TOPDIR = ../../..
  2. include $(MODULE_TOPDIR)/include/Make/Other.make
  3. include $(MODULE_TOPDIR)/include/Make/Python.make
  4. PYDIR = $(ETC)/python
  5. GDIR = $(PYDIR)/grass
  6. DSTDIR = $(GDIR)/temporal
  7. MODULES = base core abstract_dataset abstract_map_dataset abstract_space_time_dataset space_time_datasets open_stds factory gui_support list_stds register sampling metadata spatial_extent temporal_extent datetime_math temporal_granularity spatio_temporal_relationships unit_tests aggregation stds_export stds_import extract mapcalc univar_statistics temporal_topology_dataset_connector spatial_topology_dataset_connector c_libraries_interface temporal_algebra temporal_vector_algebra temporal_vector_operator temporal_raster_operator temporal_raster_base_algebra temporal_raster_algebra temporal_raster3d_algebra
  8. PYFILES := $(patsubst %,$(DSTDIR)/%.py,$(MODULES) __init__)
  9. PYCFILES := $(patsubst %,$(DSTDIR)/%.pyc,$(MODULES) __init__)
  10. default: $(PYFILES) $(PYCFILES) $(GDIR)/__init__.py $(GDIR)/__init__.pyc
  11. $(PYDIR):
  12. $(MKDIR) $@
  13. $(GDIR): | $(PYDIR)
  14. $(MKDIR) $@
  15. $(DSTDIR): | $(GDIR)
  16. $(MKDIR) $@
  17. $(DSTDIR)/%: % | $(DSTDIR)
  18. $(INSTALL_DATA) $< $@