-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Makefile.am
42 lines (35 loc) · 868 Bytes
/
Makefile.am
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
ACLOCAL_AMFLAGS= -I m4
AUTOMAKE_OPTIONS= foreign
if BUILD_MODULES
SUBD_MOD= modules
endif
if BUILD_ELPERIODIC
SUBD_ELP= libelperiodic/src
endif
if BUILD_EXTRACTAUDIO
SUBD_EAUD= extractaudio
endif
if BUILD_UDP_CONTENTION
SUBD_UDCNT= pertools
endif
if BUILD_DOCS
SUBD_DOCS= doc
endif
if BUILD_CRYPTO
SUB_LIBRE= libre
endif
SUBDIRS= libexecinfo libucl libxxHash $(SUB_LIBRE) makeann $(SUBD_MOD) \
$(SUBD_ELP) src $(SUBD_UDCNT) tests \
$(SUBD_EAUD) ${SUBD_DOCS}
dist_man_MANS= rtpproxy.8
EXTRA_DIST= README.remote doc rpm/rtpproxy.init rpm/rtpproxy.spec \
LICENSE README.md
if ENABLE_LIBRTPPROXY
include_HEADERS = src/librtpproxy.h
endif
if BUILD_DOCS
rtpproxy.8: doc/manpage.xml
${XSLTPROC} ${XSLTPROC_FLAGS} http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl doc/manpage.xml
endif
update_autosrc:
${MAKE} -C src ${.TARGET}