13 lines
168 B
Makefile
13 lines
168 B
Makefile
|
.PHONY: run install
|
||
|
|
||
|
sources=gemgraph.py gemgraph/main.py gemgraph/window.py
|
||
|
uis=ui/gemgraph.ui
|
||
|
|
||
|
|
||
|
|
||
|
install: ${sources} ${uis}
|
||
|
:
|
||
|
|
||
|
run: ${sources} ${uis}
|
||
|
./gemgraph.py
|