aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 527e93409860af8e87fa0939a74349d3b1202d63 (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" -delete

.PHONY: all clean