Salome HOME
022491: EDF 2249 SMESH: Integration of a small python library for quadrangle meshing
[modules/smesh.git] / src / Tools / Verima / Gui / makefile
1 PYUIC = pyuic4
2 .PHONY : all
3 .SUFFIXES : .ui .py
4
5
6 PY_FILES = desFenetreChoix.py myMain.py nomBase.py
7
8 %.py:%.ui
9         ${PYUIC} -x -o $@ $<
10
11 all : $(PY_FILES)
12 clean :
13         -rm -rf $(PY_FILES) *.pyc 
14 cleandb:
15         -rm -rf ../myMesh.db
16 veryclean :
17         -rm -rf $(PY_FILES) *.pyc  ../myMesh.db
18