]> sigrok.org Git - libsigrok.git/blame - hardware/Makefile.am
sr: change all drivers to use SR_DF_META_LOGIC
[libsigrok.git] / hardware / Makefile.am
CommitLineData
340f6e7a
UH
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
5##
6## This program is free software: you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation, either version 3 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
20SUBDIRS = \
6ed4f044 21 alsa \
340f6e7a 22 asix-sigma \
f4314d7e 23 chronovu-la8 \
340f6e7a
UH
24 common \
25 demo \
f302a082 26 fx2lafw \
bffed4fc 27 link-mso19 \
340f6e7a 28 openbench-logic-sniffer \
340f6e7a
UH
29 zeroplus-logic-cube
30
31noinst_LTLIBRARIES = libsigrokhardware.la
32
33libsigrokhardware_la_SOURCES =
34
35libsigrokhardware_la_LIBADD = \
a61b0e6a
UH
36 common/libsigrokhwcommon.la
37
921a4c74 38if LA_ALSA
6ed4f044
DR
39libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
40endif
41
340f6e7a
UH
42if LA_ASIX_SIGMA
43libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
44endif
45
f4314d7e
UH
46if LA_CHRONOVU_LA8
47libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
48endif
49
f302a082
JH
50if LA_FX2LAFW
51libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
52endif
53
cfd8b10a
DR
54if LA_DEMO
55libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
56endif
57
bffed4fc
UH
58if LA_LINK_MSO19
59libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
60endif
01cf8814 61
340f6e7a
UH
62if LA_OLS
63libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
64endif
65
340f6e7a
UH
66if LA_ZEROPLUS_LOGIC_CUBE
67libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
68endif
69