summaryrefslogtreecommitdiffstats
path: root/examples/nanohttp/Makefile.am
blob: dde26917d69dd2f6d8bdf2a85943bddb4f9070b7 (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
bin_PROGRAMS=httpget httpgetcb httppost httpcpost helloserver

INCLUDES=-I$(top_srcdir)/ 
LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \
	$(LIBSOCKET) $(LIBNSL) -lpthread

httpget_SOURCES=httpget.c
httpget_LDFLAGS=$(LDFLAGS)

httpgetcb_SOURCES=httpgetcb.c
httpgetcb_LDFLAGS=$(LDFLAGS)

httppost_SOURCES=httppost.c
httppost_LDFLAGS=$(LDFLAGS)

httpcpost_SOURCES=httpcpost.c
httpcpost_LDFLAGS=$(LDFLAGS)

helloserver_SOURCES=helloserver.c
helloserver_LDFLAGS=$(LDFLAGS)