aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 62b88536edb25f10a21849736d7341d7bee2be85 (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS = -std=c99 -Wall -Wextra -ggdb

all: interpreter
interpreter: interpreter.c ell.c
	$(CC) $(CFLAGS) $< -o $@
repl: repl.c ell.c
	$(CC) $(CFLAGS) $< -o $@ -lreadline
clean:
	rm -f interpreter repl
.PHONY: all clean