diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-03-07 00:49:08 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-03-07 00:49:08 +0000 |
commit | 89a4f526528da7a0b472d34be48a5b03a3f3cfe3 (patch) | |
tree | 20d1a213f549b74962e269e4af49ca971ad07089 | |
parent | b924e3ca9562f34470c1d77a4462c3539090cbbd (diff) |
enable pdlua on Windows and add minor cleanup
svn path=/trunk/; revision=9542
-rw-r--r-- | externals/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/Makefile b/externals/Makefile index 7db30788..369d3ccd 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -56,7 +56,7 @@ ifeq ($(OS_NAME),darwin) STRIP = strip -x endif ifeq ($(OS_NAME),linux) - CFLAGS += -DUNIX -Dunix -fPIC -I/usr/include/lua5.1 + CFLAGS += -DUNIX -Dunix -fPIC LDFLAGS += -Wl,-export_dynamic -shared LIBS += -lc DYLIB_LDFLAGS = $(LDFLAGS) @@ -128,7 +128,7 @@ LIB_TARGETS = adaptive bassemu boids bsaylor creb cxc cyclone deprecated earplug # this is for libraries that don't compile (yet) on all platforms ifeq ($(OS_NAME),windows) - LIB_TARGETS += + LIB_TARGETS += pdlua else ifeq ($(OS_NAME),darwin) LIB_TARGETS += hid hidio pdp pidip gem2pdp wiiremote iem16 usbhid pdlua @@ -1909,7 +1909,7 @@ pddp_clean: #------------------------------------------------------------------------------# # PDLUA PDLUA_NAME=pdlua -PDLUA_OBJECTS := $(wildcard $(externals_src)/loaders/pdlua/src/lua.c) +PDLUA_OBJECTS := $(externals_src)/loaders/pdlua/src/lua.c pdlua: $(PDLUA_OBJECTS:.c=.$(EXTENSION)) pdlua_install: pdlua |