summaryrefslogtreecommitdiff
path: root/Makefile
blob: b2ac0c0992f88de2e704d26dc1aa6d01aa7d8274 (plain)
1
2
3
4
5
6
7
8
9
10
PYTHON ?= python

install:
	python install.py

test:
	cd test && $(PYTHON) testlex.py
	cd test && $(PYTHON) testyacc.py

.PHONY: install test