forked from jackaudio/jack1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
51 lines (40 loc) · 1.12 KB
/
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
43
44
45
46
47
48
49
50
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
stamp-h.in config.log config.cache config.status
ACLOCAL_AMFLAGS = -I m4
if HAVE_DOXYGEN
DOC_DIR = doc
dist-check-doxygen:
else
DOC_DIR =
dist-check-doxygen:
@echo
@echo ' ******' You need doxygen installed to make dist.' ******'
@echo
@false
endif
SUBDIRS = libjack jackd drivers example-clients tools config $(DOC_DIR) man python
DIST_SUBDIRS = config libjack jackd include drivers example-clients tools doc man python
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = jack.pc
EXTRA_DIST = COPYING COPYING.GPL COPYING.LGPL libjack/simd.c jack.spec
AUTOMAKE_OPTIONS = foreign
rpm: dist
rpm -ta $(distdir).tar.gz
dist-hook: dist-check-doxygen
libjackincludedir = $(includedir)/jack
libjackinclude_HEADERS = \
jack/intclient.h \
jack/jack.h \
jack/ringbuffer.h \
jack/statistics.h \
jack/session.h \
jack/thread.h \
jack/transport.h \
jack/types.h \
jack/midiport.h \
jack/weakmacros.h \
jack/weakjack.h \
jack/control.h \
jack/metadata.h \
jack/uuid.h \
jack/jslist.h