summaryrefslogtreecommitdiffstats
path: root/nanohttp/Makefile.am
blob: c59e0f8922404f5dc1db38035b76e31d2d2c8fd2 (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
29
30
31
32
33
34
35
36
37
38
39
40
## Source directory


h_sources = nanohttp-common.h\
nanohttp-socket.h\
nanohttp-client.h\
nanohttp-server.h\
nanohttp-stream.h\
nanohttp-mime.h\
nanohttp-request.h\
nanohttp-response.h

cc_sources = nanohttp-common.c\
nanohttp-socket.c\
nanohttp-client.c\
nanohttp-server.c\
nanohttp-stream.c\
nanohttp-mime.c\
nanohttp-request.c\
nanohttp-response.c


library_includedir=$(includedir)/$(NANOHTTP_LIBRARY_NAME)-$(NANOHTTP_API_VERSION)/$(NANOHTTP_LIBRARY_NAME)
library_include_HEADERS = $(h_sources)

INCLUDES = -I$(top_srcdir) 

# GENERIC_API_VERSION is 1.0
lib_LTLIBRARIES= libnanohttp-1.0.la
libnanohttp_1_0_la_SOURCES= $(h_sources) $(cc_sources)
libnanohttp_1_0_la_LDFLAGS= -version-info $(NANOHTTP_LIBRARY_VERSION) -release $(NANOHTTP_RELEASE)