aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
blob: 184f8befb9488f654b8179b7810eadb6e1fe7c52 (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 $@ $^