tisp

tiny lisp
git clone git://edryd.org/tisp
Log | Files | Refs | LICENSE

commit a6572d30ab15356224c9b8aa655174ddc6cecf9e
parent 2296156365b7c8c2808c589059dd9db6569c2de1
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Sat,  5 Jan 2019 20:30:05 -0800

Fix Makefile

Diffstat:
Makefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -5,9 +5,9 @@ include config.mk EXE = tisp SRC = tisp.c main.c util.c extern/linenoise.c -TIB = tib/math.c tib/io.c +TIB = tib/math.c OBJ = $(SRC:.c=.o) $(TIB:.c=.o) -LIB = tib/libtibmath.so tib/libtibio.so +LIB = tib/libtibmath.so all: options $(EXE)