summaryrefslogtreecommitdiff
path: root/Makefile
blob: c238b5dc7f572d996667201747063ce89bbc5697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS=-Wall -O3 $(shell pkg-config --cflags libdrm)
LDFLAGS=-lm $(shell pkg-config --libs libdrm)

all: rototiller32 rototiller64

rototiller32: rototiller32.c
	$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)

rototiller64: rototiller64.c
	$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)

clean:
	rm -f rototiller32 rototiller64
© All Rights Reserved