I generated a QGIS plugin skeleton using plugin_builder.py. After
modifying the ui using Qt Designer, I figured I should be able to type
'make' and reload the plugin. The generated Makefile however does not
seem to work. Any hints?

THK

tke...@ubuntu-vbox:~/.qgis/python/plugins/meshpoly$ make
make: *** No rule to make target `compile', needed by `default'.  Stop.

# Makefile for a PyQGIS plugin
UI_FILES = Ui_MeshPoly.py

RESOURCE_FILES = resources.py

default: compile
        compile: $(UI_FILES) $(RESOURCE_FILES)

%.py : %.qrc
        pyrcc4 -o $@  $<

%.py : %.ui
        pyuic4 -o $@ $<

-- 
Timothy H. Keitt
http://www.keittlab.org/
_______________________________________________
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer

Reply via email to