aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 9ba87b3bfd3b04c2d9d4e9c03cf0f3e289e57e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
include config.mk

all: tetris

tetris: tetris.o plot.o

clean:
	rm -f tetris
	find . -name "*.o" -exec rm "{}" \;

.PHONY: all clean