Makefile 248 B

12345678910111213
  1. MODULE_TOPDIR = ../..
  2. include $(MODULE_TOPDIR)/include/Make/Other.make
  3. default: $(ETC)/python
  4. $(ETC)/python: grass.py README.txt
  5. if [ ! -d $@ ]; then $(MKDIR) $@; fi
  6. for file in $^ ; do $(INSTALL_DATA) $$file $@ ; done
  7. .PHONY: $(ETC)/python