X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=lua%2FMakefile;h=ba5205fbcd728b1b028a7d649fa7df533874a888;hp=2861d215619638b58db45c21a5ef798ca976ae02;hb=cd9311c8d6b7432f507e9eed12587c971875a9de;hpb=297cec5ed3038c10e714ed07e637b0c2b8e079eb;ds=sidebyside diff --git a/lua/Makefile b/lua/Makefile index 2861d21..ba5205f 100644 --- a/lua/Makefile +++ b/lua/Makefile @@ -1,10 +1,25 @@ include ../Makefile.inc -prefix=/usr/local -libdir=$(prefix)/lib -luadir=$(libdir)/lua/5.1 +LUA_VERSION=5.1 +PREFIX_SEARCH=/usr /usr/local /opt/local +LUA_PLUGINDIR=$(firstword \ + $(foreach ldir,$(subst ;, ,$(shell lua -e 'print(package.cpath)')), \ + $(if $(findstring lib/lua/,$(ldir)),$(patsubst %/?.so,%,$(ldir))) \ + ) \ +) -CPPFLAGS=-I.. $(shell pkg-config --silence-errors --cflags lua5.1) -LIBS=-L.. -luci $(shell pkg-config --silence-errors --libs lua5.1) +# find lua prefix +LUA_PREFIX=$(firstword \ + $(foreach prefix,$(PREFIX_SEARCH),\ + $(if $(wildcard $(prefix)/include/lua.h),$(prefix)) \ + ) \ +) + +libdir=$(prefix)/libs +luadir=$(if $(LUA_PLUGINDIR),$(LUA_PLUGINDIR),$(libdir)/lua/$(LUA_VERSION)) +luainc=$(shell pkg-config --silence-errors --cflags lua$(LUA_VERSION)) + +CPPFLAGS=-I.. $(if $(luainc),$(luainc), -I$(LUA_PREFIX)/include) +LIBS=-L.. -luci $(shell pkg-config --silence-errors --libs lua$(LUA_VERSION)) PLUGIN_LD=$(CC) ifeq ($(OS),Darwin)