summaryrefslogtreecommitdiffstats
path: root/nanohttp/Makefile.am
blob: ba3cf78048da85ef2669122354fab1ef5be1b6e0 (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
## Source directory


h_sources = nanohttp-common.h\
nanohttp-socket.h\
nanohttp-client.h\
nanohttp-server.h\
nanohttp-reqres.h\
nanohttp-stream.h

cc_sources = nanohttp-common.c\
nanohttp-socket.c\
nanohttp-client.c\
nanohttp-server.c\
nanohttp-stream.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)