aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
blob: 298567065e86c4a1398fd34521cb67f7b69c1705 (plain)
1
2
3
4
5
6
7
CFLAGS = -O2 -std=c11

all:
	echo "You did it wrong, you're supposed to give me a file to compile."

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