diff options
author | Determinant <[email protected]> | 2015-05-14 08:55:11 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-14 08:55:11 +0800 |
commit | f5b9254716b3c0f52c88eded6058c48bd2ad3ca2 (patch) | |
tree | 8600517f64b8eb5d857d7c0a21685684750b2bb3 /Makefile | |
parent | 32e1ebaa367bc9df4e19ee0634dd054ae298ae06 (diff) |
correct typoes in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ .PHONY: all clean luajit OBJS := oop_example.o nerv.o luaT.o LIBS := libnerv.so -INCLUDE := -I build/luaJIT/include/luajit-2.0/ -DLUA_USE_APICHECK -#LDFLAGS := -L luajit-2.0/build/lib/ -llua -lm +INCLUDE := -I build/luajit-2.0/include/luajit-2.0/ -DLUA_USE_APICHECK +LDFLAGS := -L luajit-2.0/build/lib/ -llua -lm OBJ_DIR := build/objs OBJS := $(addprefix $(OBJ_DIR)/,$(OBJS)) LIBS := $(addprefix $(OBJ_DIR)/,$(LIBS)) |