tisp

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

commit 717f9397088637cf89e6a4360ff78a88fa648f5d
parent e6f027320fd0eadff58b8610876af415fe7bec1b
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Wed, 25 Mar 2020 16:48:54 -0700

Rename libs.tsp.h to tibs.tsp.h

Diffstat:
Makefile | 8++++----
main.c | 2+-
test.c | 2+-
3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile @@ -22,7 +22,7 @@ options: @echo "CFLAGS = $(CFLAGS)" @echo "LDFLAGS = $(LDFLAGS)" -libs.tsp.h: $(TSP) +tibs.tsp.h: $(TSP) @echo xxd $@ @echo "char libs_tsp[] = { 0x28, " > $@ @cat $(TSP) | xxd -i - >> $@ @@ -38,9 +38,9 @@ libs.tsp.h: $(TSP) $(OBJ): config.mk -main.o: libs.tsp.h +main.o: tibs.tsp.h -test.o: config.mk libs.tsp.h +test.o: config.mk tibs.tsp.h $(LIB): $(TIB) @echo $(CC) -o $@ @@ -52,7 +52,7 @@ $(EXE): $(OBJ) $(LIB) clean: @echo cleaning - @rm -f $(OBJ) $(LIB) $(EXE) test test.o libs.tsp.h + @rm -f $(OBJ) $(LIB) $(EXE) test test.o tibs.tsp.h # TODO don't cp some if not in dynamic mode install: all diff --git a/main.c b/main.c @@ -33,7 +33,7 @@ main(int argc, char *argv[]) tib_env_io(st); tib_env_time(st); tib_env_string(st); -# include "libs.tsp.h" +# include "tibs.tsp.h" tisp_env_lib(st, libs_tsp); #endif diff --git a/test.c b/test.c @@ -6,7 +6,7 @@ #include <unistd.h> #include "tisp.h" -#include "libs.tsp.h" +#include "tibs.tsp.h" tsp_include_tib(math); tsp_include_tib(string);