summaryrefslogtreecommitdiffstats
path: root/examples/nanohttp/Makefile.am
blob: 4ade27eb17e704920ca036943b9aa5b9d7ff4d66 (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 postserver

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)

postserver_SOURCES=postserver.c
postserver_LDFLAGS=$(LDFLAGS)