blob: 277a4c6864eae665e61825d654484c6428763d9e (
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
|
bin_PROGRAMS=httpget httpgetcb httppost httpcpost helloserver 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)
helloserver_SOURCES=helloserver.c
helloserver_LDFLAGS=$(LDFLAGS)
postserver_SOURCES=postserver.c
postserver_LDFLAGS=$(LDFLAGS)
|