mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-05 21:07:58 +00:00
3eb93acc18
This commit re-organizes all the source distribution contents to present users with the simple script, while moving the rest in extras. Also autoconf/automake scripts were removed, back to minimalism. The rationale of this change is that Tomb really only consists of a script and users with no extra needs should just be presented with it with no need for anything else. Any other thing on top of the Tomb script is an extra and can be even distributed separately or integrated in distributions.
24 lines
738 B
Makefile
24 lines
738 B
Makefile
TARGETS_OPEN=tombqt/ui_open_tombfile.py tombqt/ui_open_keymethod.py tombqt/ui_open_success.py
|
|
TARGETS=tombqt/ui_create.py $(TARGETS_OPEN)
|
|
|
|
all: $(TARGETS)
|
|
test_create: tombqt/ui_create.py
|
|
python2 -3 tombqt/create.py
|
|
test_open: $(TARGETS_OPEN)
|
|
python2 -3 tombqt/open.py
|
|
|
|
|
|
tombqt/ui_create.py: tombqt/create.ui
|
|
pyuic4 create.ui -o tombqt/ui_create.py
|
|
tombqt/ui_open_tombfile.py: tombqt/open_tombfile.ui
|
|
pyuic4 tombqt/open_tombfile.ui -o tombqt/ui_open_tombfile.py
|
|
tombqt/ui_open_keymethod.py: tombqt/open_keymethod.ui
|
|
pyuic4 tombqt/open_keymethod.ui -o tombqt/ui_open_keymethod.py
|
|
tombqt/ui_open_success.py: tombqt/open_success.ui
|
|
pyuic4 tombqt/open_success.ui -o tombqt/ui_open_success.py
|
|
|
|
clean:
|
|
rm $(TARGETS)
|
|
|
|
.PHONY: test clean
|