Fix parsing empty QUERY_STRING
[infodrom/cgilib] / Makefile.am
1
2 #   Copyright (c) 1998,9,2001,7,8 by Martin Schulze <joey@infodrom.org>
3 #
4 #   This program is free software; you can redistribute it and/or modify
5 #   it under the terms of the GNU General Public License as published by
6 #   the Free Software Foundation; either version 2 of the License, or
7 #   (at your option) any later version.
8 #
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU General Public License for more details.
13 #
14 #   You should have received a copy of the GNU General Public License
15 #   along with this program; if not, write to the Free Software Foundation
16 #   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 lib_LTLIBRARIES = libcgi.la
19
20 libcgi_la_SOURCES = cgi.c cookies.c aux.c
21 libcgi_la_LDFLAGS = -version-info @SO_VERSION@
22
23 bin_PROGRAMS = cgitest jumpto
24
25 cgitest_SOURCES = cgitest.c
26 cgitest_LDADD = libcgi.la
27
28 jumpto_SOURCES = cgitest.c
29 jumpto_LDADD = libcgi.la
30
31 include_HEADERS = aux.h cgi.h
32
33 man_MANS =  cgi.5 cgiDebug.3 cgiEscape.3 cgiFree.3 cgiFreeList.3 cgiGetCookie.3 cgiGetCookies.3 cgiGetFile.3 cgiGetFiles.3 cgiGetValue.3 cgiGetVariables.3 cgiHeader.3 cgiInit.3 cgiRedirect.3 cgiSetHeader.3 cgiSetType.3