the upcoming 2.0 version
https://redmine.lighttpd.net/projects/lighttpd2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
486 B
25 lines
486 B
13 years ago
|
|
||
|
noinst_LIBRARIES=libcommon.a
|
||
|
common_cflags=-I$(top_srcdir)/include -I$(top_builddir)/include
|
||
|
|
||
|
common_src= \
|
||
|
angel_connection.c \
|
||
|
angel_data.c \
|
||
|
encoding.c \
|
||
|
idlist.c \
|
||
|
ip_parsers.c \
|
||
|
module.c \
|
||
|
radix.c \
|
||
|
sys-files.c \
|
||
|
sys-socket.c \
|
||
|
utils.c \
|
||
|
waitqueue.c
|
||
|
|
||
|
BUILT_SOURCES=ip_parsers.c
|
||
|
|
||
|
ip_parsers.c: ip_parsers.rl
|
||
|
ragel -C -T1 -o $@ $<
|
||
|
|
||
|
libcommon_a_SOURCES=$(common_src)
|
||
|
libcommon_a_CPPFLAGS=$(common_cflags) $(GTHREAD_CFLAGS) $(GMODULE_CFLAGS) $(LIBEV_CFLAGS) $(LUA_CFLAGS)
|