]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/Tools/Verima/Gui/makefile
Salome HOME
IMP: Verima / New Plugin: Added a plugin for meshers quality testing (work done at...
[modules/smesh.git] / src / Tools / Verima / Gui / makefile
diff --git a/src/Tools/Verima/Gui/makefile b/src/Tools/Verima/Gui/makefile
new file mode 100644 (file)
index 0000000..be4dafd
--- /dev/null
@@ -0,0 +1,18 @@
+PYUIC = pyuic4
+.PHONY : all
+.SUFFIXES : .ui .py
+
+
+PY_FILES = desFenetreChoix.py myMain.py nomBase.py
+
+%.py:%.ui
+       ${PYUIC} -x -o $@ $<
+
+all : $(PY_FILES)
+clean :
+       -rm -rf $(PY_FILES) *.pyc 
+cleandb:
+       -rm -rf ../myMesh.db
+veryclean :
+       -rm -rf $(PY_FILES) *.pyc  ../myMesh.db
+