summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 330461983db9c7efa6564873ee4bbedc59202bf8 (plain)
1
2
3
4
5
6
7
8
9
CC?=gcc
SDL2FLAGS=$(shell pkg-config sdl2 --cflags --libs)
CFLAGS?=-march=native -O3 -pipe

main: main.c
	${CC} ${CFLAGS} -o $@ $< ${SDL2FLAGS}

clean:
	rm -f main *.o