summaryrefslogtreecommitdiff
path: root/Makefile
blob: aa6c8eef05b8e5a4eccb3e2973aff1de2f414686 (plain)
1
2
3
4
5
6
7
8
CC = gcc
ALL_FLAGS = -g

main: main.c
	${CC} ${ALL_FLAGS} main.c

clean:
	rm *\.o