Makefile 251 B

12345678910111213
  1. MODULE_TOPDIR = ../..
  2. include $(MODULE_TOPDIR)/include/Make/Other.make
  3. default: $(ETC)/python
  4. $(MAKE) $(ETC)/python/grass.py $(ETC)/python/README.txt
  5. $(ETC)/python:
  6. -if [ ! -d $@ ]; then $(MKDIR) $@; fi
  7. $(ETC)/python/%: %
  8. $(INSTALL_DATA) $< $@