diff options
author | Steven Barth <steven@midlink.org> | 2008-05-28 19:37:43 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-28 19:37:43 +0000 |
commit | 4e53d007bf30dddad1a2e1b44aa55d3ca8671ae4 (patch) | |
tree | 69e5a17bb861283f1333f3304b1e8dca16ef3955 /build/config.mk | |
parent | 38844ccb3107cd84488ae1cd67fec8e7de833eb4 (diff) |
* Reworked Makefiles
* Introduced following targets:
build: gccbuild luabuild
gccbuild: compile
luabuild: luasource||luacompile
* Removed requirement for lua-headers respecting lua-only builds
* Split compile part of OpenWRT Makefile
Diffstat (limited to 'build/config.mk')
-rw-r--r-- | build/config.mk | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/build/config.mk b/build/config.mk index 9db99cd6b..1755974f2 100644 --- a/build/config.mk +++ b/build/config.mk @@ -1,28 +1,4 @@ -OS ?= $(shell uname) - LUAC = luac LUAC_OPTIONS = -s LUCI_INSTALLDIR = /usr/lib/lua/luci -LUA_SHLIBS = $(shell pkg-config --silence-errors --libs lua5.1) -LUA_LIBS = $(if $(LUA_SHLIBS),$(LUA_SHLIBS),$(firstword $(wildcard /usr/lib/liblua.a /usr/local/lib/liblua.a /opt/local/lib/liblua.a))) -LUA_CFLAGS = $(shell pkg-config --silence-errors --cflags lua5.1) -ifeq ($(LUA_LIBS),) - $(error LUA installation not found) -endif - -CC = gcc -AR = ar -RANLIB = ranlib -CFLAGS = -O2 -FPIC = -fPIC -EXTRA_CFLAGS = --std=gnu99 -WFLAGS = -Wall -Werror -pedantic -CPPFLAGS = -COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(EXTRA_CFLAGS) $(WFLAGS) -ifeq ($(OS),Darwin) - SHLIB_FLAGS = -bundle -undefined dynamic_lookup -else - SHLIB_FLAGS = -shared -endif -LINK = $(CC) |