mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-22 16:05:37 +05:00
19 lines
274 B
Makefile
19 lines
274 B
Makefile
![]() |
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
|
||
|
|