annotate src/c/Makefile.am @ 1493:9cb923efea4d
Generated pretty-printed HTML for a simple tutorial source file
author |
Adam Chlipala <adam@chlipala.net> |
date |
Fri, 15 Jul 2011 16:50:55 -0400 |
parents |
3d0cc841cafd |
children |
1ced338f691a |
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
|
adam@1368
|
9 AM_CPPFLAGS = -I../../include @OPENSSL_INCLUDES@
|
adam@1474
|
10 AM_CFLAGS = -Wimplicit -Wall -Werror -Wno-format-security
|