aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-05-14 08:55:11 +0800
committerDeterminant <ted.sybil@gmail.com>2015-05-14 08:55:11 +0800
commitf5b9254716b3c0f52c88eded6058c48bd2ad3ca2 (patch)
tree8600517f64b8eb5d857d7c0a21685684750b2bb3 /Makefile
parent32e1ebaa367bc9df4e19ee0634dd054ae298ae06 (diff)
correct typoes in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9fd8873..e638b96 100644
--- a/Makefile
+++ b/Makefile
@@ -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))