mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 12:23:44 +02:00
8b4e17bfbc
- rewrite large parts of the server, use uloop event driven structure - support concurrent requests and make the upper limit configurable - implement initial version of HTTP-to-ubus JSON proxy and session.* namespace - add compile time support for debug information - code style changes - bump package revision git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31931 3c298f89-4303-0410-b956-a3cf2f4a3e73
90 lines
1.7 KiB
Makefile
90 lines
1.7 KiB
Makefile
CGI_SUPPORT ?= 1
|
|
LUA_SUPPORT ?= 1
|
|
TLS_SUPPORT ?= 1
|
|
UHTTPD_TLS ?= cyassl
|
|
|
|
CFLAGS ?= -I./lua-5.1.4/src $(TLS_CFLAGS) -O0 -ggdb3
|
|
LDFLAGS ?= -L./lua-5.1.4/src
|
|
|
|
CFLAGS += -Wall --std=gnu99
|
|
|
|
ifeq ($(UHTTPD_TLS),openssl)
|
|
TLS_LDFLAGS ?= -L./openssl-0.9.8m -lssl
|
|
TLS_CFLAGS ?= -I./openssl-0.9.8m/include -DTLS_IS_OPENSSL
|
|
else
|
|
TLS_LDFLAGS ?= -L./cyassl-1.4.0/src/.libs -lcyassl
|
|
TLS_CFLAGS ?= -I./cyassl-1.4.0/include -DTLS_IS_CYASSL
|
|
endif
|
|
|
|
OBJ := uhttpd.o uhttpd-file.o uhttpd-utils.o
|
|
LIB := -Wl,--export-dynamic -lcrypt -ldl
|
|
|
|
TLSLIB :=
|
|
LUALIB :=
|
|
|
|
HAVE_SHADOW=$(shell echo 'int main(void){ return !getspnam("root"); }' | \
|
|
$(CC) -include shadow.h -xc -o/dev/null - 2>/dev/null && echo yes)
|
|
|
|
ifeq ($(HAVE_SHADOW),yes)
|
|
CFLAGS += -DHAVE_SHADOW
|
|
endif
|
|
|
|
ifeq ($(TLS_SUPPORT),1)
|
|
CFLAGS += -DHAVE_TLS
|
|
endif
|
|
|
|
ifeq ($(CGI_SUPPORT),1)
|
|
CFLAGS += -DHAVE_CGI
|
|
endif
|
|
|
|
ifeq ($(LUA_SUPPORT),1)
|
|
CFLAGS += -DHAVE_LUA
|
|
endif
|
|
|
|
ifeq ($(UBUS_SUPPORT),1)
|
|
CFLAGS += -DHAVE_UBUS
|
|
endif
|
|
|
|
|
|
world: compile
|
|
|
|
ifeq ($(CGI_SUPPORT),1)
|
|
OBJ += uhttpd-cgi.o
|
|
endif
|
|
|
|
ifeq ($(LUA_SUPPORT),1)
|
|
LUALIB := uhttpd_lua.so
|
|
|
|
$(LUALIB): uhttpd-lua.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(FPIC) \
|
|
-shared -lm -llua -ldl \
|
|
-o $(LUALIB) uhttpd-lua.c
|
|
endif
|
|
|
|
ifeq ($(TLS_SUPPORT),1)
|
|
TLSLIB := uhttpd_tls.so
|
|
|
|
$(TLSLIB): uhttpd-tls.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(FPIC) \
|
|
-shared $(TLS_LDFLAGS) \
|
|
-o $(TLSLIB) uhttpd-tls.c
|
|
endif
|
|
|
|
ifeq ($(UBUS_SUPPORT),1)
|
|
UBUSLIB := uhttpd_ubus.so
|
|
|
|
$(UBUSLIB): uhttpd-ubus.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(FPIC) \
|
|
-shared -lubus -ljson -lblobmsg_json \
|
|
-o $(UBUSLIB) uhttpd-ubus.c
|
|
endif
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
compile: $(OBJ) $(TLSLIB) $(LUALIB) $(UBUSLIB)
|
|
$(CC) -o uhttpd $(LDFLAGS) $(OBJ) $(LIB)
|
|
|
|
clean:
|
|
rm -f *.o *.so uhttpd
|