File: Makefile.am

package info (click to toggle)
libr3 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 1,084 kB
  • ctags: 1,086
  • sloc: ansic: 13,117; cpp: 175; makefile: 112; sh: 64; ruby: 52
file content (45 lines) | stat: -rw-r--r-- 882 bytes parent folder | download
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
41
42
43
44
45
SUBDIRS=3rdparty src . tests examples

lib_LTLIBRARIES = libr3.la
libr3_la_SOURCES =
libr3_la_LIBADD = 3rdparty/libr3ext.la src/libr3core.la
libr3_la_LDFLAGS =

AM_CFLAGS=$(DEPS_CFLAGS) $(GVC_DEPS_CFLAGS) -I$(top_builddir) -I$(top_builddir)/include -I$(top_builddir)/3rdparty -Wall -std=c99
AM_LDFLAGS=$(DEPS_LIBS) $(GVC_DEPS_LIBS)


ACLOCAL_AMFLAGS=-I m4

if ENABLE_DEBUG
AM_CFLAGS += -ggdb -fprofile-arcs -ftest-coverage
endif

if USE_JEMALLOC
AM_LDFLAGS += -ljemalloc
endif

r3_includedir = $(includedir)/r3
r3_include_HEADERS = \
	include/r3.h \
	include/r3_define.h \
	include/r3_list.h \
	include/r3_str.h \
	include/r3_gvc.h \
	include/r3_json.h \
	include/str_array.h \
	include/r3.hpp \
	$(NULL)

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = r3.pc

EXTRA_DIST = \
	autogen.sh \
	bench.html \
	demo.c \
	gen_routes.rb \
	HACKING.md \
	LICENSE \
	README.md \
	$(NULL)