1all: med.txt tiny
2
3tiny: Tiny.hs
4	ghc -O --make -o $@ $<
5
6%: %.bz2
7	bunzip2 -k $<
8
9clean:
10	-rm -f *.o *.hi tiny
11