blob: 5e24bd168bd2672b0f14b9e9f99d51fa93a10781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
noinst_PROGRAMS=http_server
#bin_PROGRAMS=http_server httpget httpgetcb httppost httpcpost postserver
INCLUDES=-I$(top_srcdir)/
nanohttp_LDFLAG=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \
$(LIBSOCKET) $(LIBNSL) -lpthread
#simpleclient_SOURCES=simpleclient.c
http_server_SOURCES=http_server.c
http_server_LDFLAGS=$(nanohttp_LDFLAG)
#httpget_SOURCES=httpget.c
#httpget_LDFLAGS=$(nanohttp_LDFLAG)
#httpgetcb_SOURCES=httpgetcb.c
#httpgetcb_LDFLAGS=$(nanohttp_LDFLAG)
#httppost_SOURCES=httppost.c
#httppost_LDFLAGS=$(nanohttp_LDFLAG)
#httpcpost_SOURCES=httpcpost.c
#httpcpost_LDFLAGS=$(nanohttp_LDFLAG)
#postserver_SOURCES=postserver.c
#postserver_LDFLAGS=$(nanohttp_LDFLAG)
|