9 lines
96 B
Makefile
9 lines
96 B
Makefile
|
TARGET = ui/fluxion
|
||
|
|
||
|
build-ui:
|
||
|
pyuic4 -x $(TARGET).ui -o $(TARGET).py
|
||
|
|
||
|
clean:
|
||
|
rm -f ui/*.py
|
||
|
|