# Makefile for a PyQGIS plugin 
UI_FILES = Ui_uuid.py

default: compile
	
compile: $(UI_FILES) 


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

