about summary refs log tree commit diff
path: root/Makefile
blob: 92bca6feff0daeb6d153476171d87494acb127cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CC = gcc
TEMPLATE = templates/simple.c
CFLAGS = -Wall --debug --std=c99

blog:
	$(CC) -o blog main.c $(TEMPLATE) $(CFLAGS)
clean:
	rm -f blog

again: clean blog