2
0
Fork 0
lighttpd2/src/common/Makefile.am

38 lines
842 B
Makefile
Raw Normal View History

2009-07-31 18:36:37 +00:00
2010-01-03 18:47:47 +00:00
lib_LTLIBRARIES=liblighttpd2-common.la
2013-05-22 15:26:33 +00:00
common_cflags=-I$(top_builddir)/include -I$(top_srcdir)/include
2009-07-31 18:36:37 +00:00
common_src= \
angel_connection.c \
angel_data.c \
buffer.c \
2009-07-31 18:36:37 +00:00
encoding.c \
idlist.c \
ip_parsers.c \
2010-09-05 11:08:40 +00:00
jobqueue.c \
2010-10-14 11:27:24 +00:00
memcached.c \
mempool.c \
2009-07-31 18:36:37 +00:00
module.c \
radix.c \
sys_memory.c \
sys_socket.c \
tasklet.c \
2009-07-31 18:36:37 +00:00
utils.c \
waitqueue.c
2011-11-17 20:25:45 +00:00
if WITH_PROFILER
common_src+= profiler.c
endif
EXTRA_liblighttpd2_common_la_SOURCES=$(lua_src) profiler.c
2009-07-31 18:36:37 +00:00
BUILT_SOURCES=ip_parsers.c
ip_parsers.c: ip_parsers.rl
$(RAGEL) -C -T1 -o $@ $<
2009-07-31 18:36:37 +00:00
2009-12-21 20:07:27 +00:00
EXTRA_DIST=ip_parsers.rl
2010-01-03 18:47:47 +00:00
liblighttpd2_common_la_SOURCES=$(common_src)
liblighttpd2_common_la_CPPFLAGS=$(common_cflags) $(GTHREAD_CFLAGS) $(GMODULE_CFLAGS) $(LIBEV_CFLAGS)
2010-10-06 12:24:01 +00:00
liblighttpd2_common_la_LDFLAGS=-release $(PACKAGE_VERSION) -export-dynamic $(GTHREAD_LIBS) $(GMODULE_LIBS) $(LIBEV_LIBS) $(CRYPT_LIB)