1 2 3 4 5 6 7 8
.POSIX: CFLAGS=-Wall -Werror LDFLAGS=-lm SOURCE=autorotate.c autorotate: $(SOURCE) $(CC) $(CFLAGS) -o $@ $(SOURCE) $(LDFLAGS)