aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 545347b5cacf2c5f9918cf98fa5c214039899721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include config.mk

all: tetris

tetris: tetris.o plot.o
	$(CC) -o $@ $^ $(LDFLAGS)

%.o: %.c
	$(CC) -c -o $@ $< $(CFLAGS)

clean:
	rm -f tetris
	find -name "*.o" -delete

.PHONY: all clean