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