summaryrefslogtreecommitdiff
path: root/Makefile
blob: c0492b83d86e8d1774256a5882a93ccc7c35abc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
CC=clang
EXECUTABLE=wafflestone

wafflestone: *.c *.h
	$(CC) -Wall -Wpedantic -Wextra -Werror -O3 -o $(EXECUTABLE) framebuffer.c main.c

debug: *.c *.h
	$(CC) -Wall -g -o $(EXECUTABLE) framebuffer.c main.c

.PHONY: clean
clean:
	rm ./$(EXECUTABLE)