summaryrefslogtreecommitdiff
path: root/Makefile
blob: 18b0f42fa9f44ab94d20a1b9023993ebf5ba90a3 (plain)
1
2
3
4
5
6
7
8
.POSIX:

CFLAGS=-Wall -Werror
LDFLAGS=-lm
SOURCE=autorotate.c

autorotate: $(SOURCE)
	$(CC) $(CFLAGS) -o $@ $(SOURCE) $(LDFLAGS)