aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-05-21 13:01:23 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2017-05-21 13:19:50 +0200
commitf0156897c82da0ac30bc16aef8d301e7e07c44c6 (patch)
treeddd8d1e6bd6b406264dd40dc22e2fd2a76fafd3f /Makefile
parent455845d078f39f3969139c6a0729e0b081cfa159 (diff)
downloadell-f0156897c82da0ac30bc16aef8d301e7e07c44c6.tar.gz
ell-f0156897c82da0ac30bc16aef8d301e7e07c44c6.tar.xz
ell-f0156897c82da0ac30bc16aef8d301e7e07c44c6.zip
Add a REPL for toying around
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b52f38..62b8853 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ all: interpreter
interpreter: interpreter.c ell.c
$(CC) $(CFLAGS) $< -o $@
repl: repl.c ell.c
- $(CC) $(CFLAGS) $< -o $@
+ $(CC) $(CFLAGS) $< -o $@ -lreadline
clean:
rm -f interpreter repl
.PHONY: all clean