aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5ad62edfae01fae943476f96d1dc6afe44666721 (plain)
1
2
3
4
5
6
7
CFLAGS = -std=c99 -Wall -Wextra -ggdb
all: ell
ell: ell.c
	$(CC) $(CFLAGS) $< -o $@
clean:
	rm ell
.PHONY: all clean