Browse Source

limit install to .py where it can be (https://trac.osgeo.org/grass/ticket/2006), alpha-sort dirs, linewrap

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@56754 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 12 years ago
parent
commit
3fb2a38826
1 changed files with 12 additions and 6 deletions
  1. 12 6
      gui/wxpython/Makefile

+ 12 - 6
gui/wxpython/Makefile

@@ -9,14 +9,20 @@ include $(MODULE_TOPDIR)/include/Make/Python.make
 
 ETCDIR = $(ETC)/gui/wxpython
 
-SRCFILES := $(wildcard icons/*.* scripts/* xml/*) \
-	$(wildcard animation/* core/* dbmgr/* gcp/* gmodeler/* gui_core/* iclass/* lmgr/* location_wizard/* \
-	mapdisp/* modules/* nviz/* psmap/* mapswipe/* vdigit/* wxplot/* web_services/* rlisetup/* vnet/*) \
+SRCFILES := $(wildcard icons/*.py scripts/*.py xml/*) \
+	$(wildcard animation/* core/*.py dbmgr/* gcp/*.py gmodeler/* \
+	gui_core/*.py iclass/* lmgr/*.py location_wizard/*.py mapdisp/*.py \
+	mapswipe/* modules/*.py nviz/*.py psmap/* rlisetup/* vdigit/* \
+	vnet/*.py web_services/*.py wxplot/*.py) \
 	gis_set.py gis_set_error.py wxgui.py README
-DSTFILES := $(patsubst %,$(ETCDIR)/%,$(SRCFILES)) $(patsubst %.py,$(ETCDIR)/%.pyc,$(filter %.py,$(SRCFILES)))
 
-PYDSTDIRS := $(patsubst %,$(ETCDIR)/%,animation core dbmgr gcp gmodeler gui_core iclass lmgr location_wizard \
-	mapdisp modules nviz psmap mapswipe vdigit wxplot web_services rlisetup vnet)
+DSTFILES := $(patsubst %,$(ETCDIR)/%,$(SRCFILES)) \
+	$(patsubst %.py,$(ETCDIR)/%.pyc,$(filter %.py,$(SRCFILES)))
+
+PYDSTDIRS := $(patsubst %,$(ETCDIR)/%,animation core dbmgr gcp gmodeler \
+	gui_core iclass lmgr location_wizard mapdisp modules nviz psmap \
+	mapswipe vdigit wxplot web_services rlisetup vnet)
+
 DSTDIRS := $(patsubst %,$(ETCDIR)/%,icons scripts xml)
 
 default: $(DSTFILES)