1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2026-02-01 13:55:45 +01:00

Change Makefile to make tests work, removed cleanup shell script, removed

start script. There should be created new starscript suitable for running app
from current directory and installed as an egg.
This commit is contained in:
2009-05-04 16:36:39 +00:00
parent 52b293c459
commit 08c38bf63d
3 changed files with 4 additions and 20 deletions

View File

@@ -1,14 +1,14 @@
RUN = PYTHONPATH=/home/gryf/Devel/Python/pyGTKtalog:/home/gryf/.python_lib python
PYTHON_EXEC = PYTHONPATH=/home/gryf/Devel/Python/pyGTKtalog:/home/gryf/.python_lib python
LOCALE = LC_ALL=pl_PL.utf8
FILE = pygtktalog.py
.PHONY: run
run:
@$(RUN) $(FILE)
@$(PYTHON_EXEC) $(FILE)
.PHONY: runpl
runpl:
@export $(LOCALE) && $(RUN) $(FILE)
@export $(LOCALE) && $(PYTHON_EXEC) $(FILE)
.PHONY: clean
clean:
@@ -45,7 +45,7 @@ pltrans: pot
.PHONY: test
test:
cd test && python run_tests.py
cd test && $(PYTHON_EXEC) run_tests.py
.PHONY: dist
dist: