annotate src/c/Makefile.am @ 1840:146ec8e90063
Add some name-mangling rules to allow XML attribute 'name' and attributes with dashes
author |
Adam Chlipala <adam@chlipala.net> |
date |
Thu, 27 Dec 2012 15:34:11 -0500 |
parents |
c414850f206f |
children |
907a82a44f01 |
rev |
line source |
adam@1493
|
1 lib_LTLIBRARIES = liburweb.la liburweb_http.la liburweb_cgi.la liburweb_fastcgi.la liburweb_static.la
|
adamc@1132
|
2
|
adam@1368
|
3 liburweb_la_SOURCES = memmem.c openssl.c urweb.c request.c queue.c
|
adamc@1132
|
4 liburweb_http_la_SOURCES = http.c
|
adamc@1132
|
5 liburweb_cgi_la_SOURCES = cgi.c
|
adamc@1132
|
6 liburweb_fastcgi_la_SOURCES = fastcgi.c
|
adam@1493
|
7 liburweb_static_la_SOURCES = static.c
|
adamc@1132
|
8
|
ezyang@1739
|
9 AM_CPPFLAGS = -I../../include/urweb @OPENSSL_INCLUDES@
|
adam@1581
|
10 AM_CFLAGS = -Wimplicit -Wall -Werror -Wno-format-security -Wno-deprecated-declarations
|