You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd2/src/main/Makefile.am

94 lines
2.3 KiB
Makefile

14 years ago
bin_PROGRAMS=lighttpd2
lib_LTLIBRARIES=liblighttpd2-shared.la
14 years ago
14 years ago
common_cflags=-I$(top_srcdir)/include -I$(top_builddir)/include
lighttpd_shared_src= \
angel.c \
angel_fake.c \
actions.c \
chunk.c \
chunk_parser.c \
collect.c \
condition.c \
config_parser.c \
connection.c \
environment.c \
etag.c \
filter_chunked.c \
filter_buffer_on_disk.c \
14 years ago
http_headers.c \
http_range_parser.c \
14 years ago
http_request_parser.c \
http_response_parser.c \
lighttpd-glue.c \
log.c \
network.c \
network_write.c network_writev.c \
network_sendfile.c \
options.c \
plugin.c \
profiler.c \
request.c \
response.c \
server.c \
stat_cache.c \
throttle.c \
url_parser.c \
value.c \
virtualrequest.c \
worker.c \
\
plugin_core.c
lua_src= \
14 years ago
actions_lua.c \
condition_lua.c \
config_lua.c \
value_lua.c \
\
chunk_lua.c \
connection_lua.c \
core_lua.c \
environment_lua.c \
filters_lua.c \
http_headers_lua.c \
physical_lua.c \
request_lua.c \
response_lua.c \
stat_lua.c \
virtualrequest_lua.c
if USE_LUA
lighttpd_shared_src+=$(lua_src)
14 years ago
endif
EXTRA_lighttpd2_SOURCES=$(lua_src)
14 years ago
BUILT_SOURCES=config_parser.c http_range_parser.c http_request_parser.c http_response_parser.c url_parser.c
14 years ago
config_parser.c: config_parser.rl
ragel -C -T0 -o $@ $<
http_range_parser.c: http_range_parser.rl
ragel -C -T1 -o $@ $<
14 years ago
http_request_parser.c: http_request_parser.rl
ragel -C -T1 -o $@ $<
http_response_parser.c: http_response_parser.rl
ragel -C -T1 -o $@ $<
url_parser.c: url_parser.rl
ragel -C -T1 -o $@ $<
14 years ago
EXTRA_DIST=config_parser.rl http_range_parser.rl http_request_parser.rl http_response_parser.rl url_parser.rl
liblighttpd2_shared_la_SOURCES=$(lighttpd_shared_src)
liblighttpd2_shared_la_CPPFLAGS=$(common_cflags) $(GTHREAD_CFLAGS) $(GMODULE_CFLAGS) $(LIBEV_CFLAGS) $(LUA_CFLAGS)
liblighttpd2_shared_la_LDFLAGS=-release $(PACKAGE_VERSION) -export-dynamic $(GTHREAD_LIBS) $(GMODULE_LIBS) $(LIBEV_LIBS) $(LUA_LIBS)
liblighttpd2_shared_la_LIBADD=../common/liblighttpd2-common.la
14 years ago
lighttpd2_SOURCES=lighttpd.c
14 years ago
lighttpd2_CPPFLAGS=$(common_cflags) $(GTHREAD_CFLAGS) $(GMODULE_CFLAGS) $(LIBEV_CFLAGS) $(LUA_CFLAGS) -DDEFAULT_LIBDIR='"$(pkglibdir)"'
lighttpd2_LDFLAGS=-export-dynamic $(GTHREAD_LIBS) $(GMODULE_LIBS) $(LIBEV_LIBS) $(LUA_LIBS)
lighttpd2_LDADD=../common/liblighttpd2-common.la ../main/liblighttpd2-shared.la