]> sigrok.org Git - libsigrok.git/blame - hardware/Makefile.am
initial version of alsa plugin.
[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
UH
22 asix-sigma \
23 common \
24 demo \
bffed4fc 25 link-mso19 \
340f6e7a
UH
26 openbench-logic-sniffer \
27 saleae-logic \
28 zeroplus-logic-cube
29
30noinst_LTLIBRARIES = libsigrokhardware.la
31
32libsigrokhardware_la_SOURCES =
33
34libsigrokhardware_la_LIBADD = \
a61b0e6a
UH
35 common/libsigrokhwcommon.la
36
6ed4f044
DR
37if LA_DEMO
38libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
39endif
40
340f6e7a
UH
41if LA_ASIX_SIGMA
42libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
43endif
44
cfd8b10a
DR
45if LA_DEMO
46libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
47endif
48
bffed4fc
UH
49if LA_LINK_MSO19
50libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
51endif
01cf8814 52
340f6e7a
UH
53if LA_OLS
54libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
55endif
56
57if LA_SALEAE_LOGIC
58libsigrokhardware_la_LIBADD += saleae-logic/libsigrokhwsaleaelogic.la
59endif
60
61if LA_ZEROPLUS_LOGIC_CUBE
62libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
63endif
64