let json parser accept lower-case hex digits
[philodendron.git] / Makefile
blob731f703d446fb48a130266ce009fdaa185884a07
2 CFLAGS=-Wall -g -O6 -std=c99
3 SUBDIRS=runtime lang_ext utilities
4 TARGETS=all clean
6 .PHONY: $(TARGETS)
7 all: lua_path
8 @for dir in $(SUBDIRS) ; do make -w -C $$dir $@; done
10 clean:
11 rm -f lua_path
12 @for dir in $(SUBDIRS) ; do make -w -C $$dir $@; done
14 lua_path: Makefile
15 echo "export LUA_PATH=`pwd`/compiler/?.lua\\;`pwd`/sketches/?.lua" > lua_path
16 echo export LUA_CPATH=`pwd`/lang_ext/lua/?.so >> lua_path