aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5e6c9975a61c1e1ac0872ee5ea8ad35e9487c195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CC_D = gcc -Wall -Wextra -pedantic -g -O0
CC_R = gcc -Wall -Wextra -pedantic -g -O2
CC ?= CC_D

OBJ =

all:
	echo "Make what, mate? (no default target)" >&2
	exit 2

clean:
	rm -f $(OBJ)