Merge remote-tracking branch 'origin/master'

This commit is contained in:
Yuichi Nishiwaki 2013-11-08 00:43:13 +09:00
commit 8ced1f18bc
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ build-lib:
cd src; \
yacc -d parse.y; \
lex scan.l
$(CC) $(CFLAGS) -shared src/*.c -o lib/libpicrin.so -I./include -I./extlib
$(CC) $(CFLAGS) -shared src/*.c -o lib/libpicrin.so -I./include -I./extlib -lm
clean:
rm -f src/y.tab.c src/y.tab.h src/lex.yy.c

View File

@ -4,7 +4,7 @@
# Picrin - a lightweight scheme interpreter
## Freatures
## Features
- R7RS compatibility (but partial support)
- reentrant design (all VM states are stored in single global state object)