diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-21 13:01:23 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-21 13:19:50 +0200 |
commit | f0156897c82da0ac30bc16aef8d301e7e07c44c6 (patch) | |
tree | ddd8d1e6bd6b406264dd40dc22e2fd2a76fafd3f /Makefile | |
parent | 455845d078f39f3969139c6a0729e0b081cfa159 (diff) | |
download | ell-f0156897c82da0ac30bc16aef8d301e7e07c44c6.tar.gz ell-f0156897c82da0ac30bc16aef8d301e7e07c44c6.tar.xz ell-f0156897c82da0ac30bc16aef8d301e7e07c44c6.zip |
Add a REPL for toying around
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |