aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 0b52f38bd51b8ebcd59b6b7033c2d943e2bd9586 (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 $@
clean:
	rm -f interpreter repl
.PHONY: all clean