diff options
author | Determinant <[email protected]> | 2015-05-15 03:13:31 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-15 03:13:31 +0800 |
commit | 902faa66e3da52a1a4cf7b1dc7da6e6bf0d47d34 (patch) | |
tree | d3c5bad9e01ecc13a510fd552b97b080e70c38ad /Makefile | |
parent | d77baabfd42d169c2cf7318b770c1f2547ebe17d (diff) |
add cumatrix
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,7 @@ .PHONY: all clean luajit -OBJS := oop_example.o nerv.o luaT.o common.o matrix/matrix.o matrix/init.o +OBJS := oop_example.o nerv.o luaT.o common.o matrix/matrix.o matrix/cumatrix.o matrix/init.o LIBS := libnerv.so -LUA_LIBS := matrix/matrix.lua nerv.lua +LUA_LIBS := matrix/init.lua nerv.lua INCLUDE := -I build/luajit-2.0/include/luajit-2.0/ -DLUA_USE_APICHECK LDFLAGS := -L luajit-2.0/build/lib/ -llua -lm CFLAGS := @@ -33,3 +33,4 @@ $(LIBS): $(OBJS) gcc -shared -o $@ $(OBJS) clean: -rm -rf $(OBJ_DIR) + -rm -rf $(LUA_DIR) |