tomb

the crypto undertaker
git clone git://parazyd.org/tomb.git
Log | Files | Refs | README | LICENSE

Makefile (738B)


      1 TARGETS_OPEN=tombqt/ui_open_tombfile.py tombqt/ui_open_keymethod.py tombqt/ui_open_success.py
      2 TARGETS=tombqt/ui_create.py $(TARGETS_OPEN)
      3 
      4 all: $(TARGETS)
      5 test_create: tombqt/ui_create.py
      6 	python2 -3 tombqt/create.py
      7 test_open: $(TARGETS_OPEN)
      8 	python2 -3 tombqt/open.py
      9 
     10 
     11 tombqt/ui_create.py: tombqt/create.ui
     12 	 pyuic4 create.ui -o tombqt/ui_create.py
     13 tombqt/ui_open_tombfile.py: tombqt/open_tombfile.ui
     14 	pyuic4 tombqt/open_tombfile.ui -o tombqt/ui_open_tombfile.py
     15 tombqt/ui_open_keymethod.py: tombqt/open_keymethod.ui
     16 	pyuic4 tombqt/open_keymethod.ui -o tombqt/ui_open_keymethod.py
     17 tombqt/ui_open_success.py: tombqt/open_success.ui
     18 	pyuic4 tombqt/open_success.ui -o tombqt/ui_open_success.py
     19 
     20 clean:
     21 	rm $(TARGETS)
     22 
     23 .PHONY: test clean