From 0da70c388d7c5484c1da01eb784204c6e0791a57 Mon Sep 17 00:00:00 2001 From: Jude Young <0b1100110@gmail.com> Date: Mon, 24 Feb 2014 23:24:51 -0600 Subject: [PATCH] Update Makefile It seems that the built library is always called "libluad-d.a" right? In any case, this causes the examples to build correctly on Linux and OSX. --- example/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Makefile b/example/Makefile index 095a8e9..82dcf65 100644 --- a/example/Makefile +++ b/example/Makefile @@ -18,7 +18,7 @@ ifeq ($(LUA), ) $(error No Lua library set) endif -DFLAGS = -w -wi -ignore -m$(MODEL) -I../ -L-L../lib -L-lluad -L-l$(LUA) +DFLAGS = -w -wi -ignore -m$(MODEL) -I../ -L-L../lib -L-lluad-d -L-l$(LUA) ifeq ($(BUILD), release) DFLAGS += -release -O -inline -noboundscheck