Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 9fce53288d2d35ba8062349d53ea1d2cc40e4be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CLEANFILES = $(shell find . -type f -name '*.py[oc]')
CLEANDIRS = dist locale

.PHONY: bundle test 

all:
	python setup.py build

bundle:
	./createbundle.sh

test:
	./testcases/runtests.sh

clean:
	@rm -rf $(addprefix ./,$(CLEANDIRS))
	@rm -rf $(addprefix ./,$(CLEANFILES))

run:
	python main.py