]> sigrok.org Git - libsigrok.git/blame - hardware/Makefile.am
sr: demodevice: Reset sample limit when setting time limit and vice versa
[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 \
ca3d84cc 27 genericdmm \
bffed4fc 28 link-mso19 \
340f6e7a 29 openbench-logic-sniffer \
3b533202 30 zeroplus-logic-cube \
eb1f1eb4
UH
31 hantek-dso \
32 mastech-va18b
340f6e7a
UH
33
34noinst_LTLIBRARIES = libsigrokhardware.la
35
36libsigrokhardware_la_SOURCES =
37
38libsigrokhardware_la_LIBADD = \
a61b0e6a
UH
39 common/libsigrokhwcommon.la
40
921a4c74 41if LA_ALSA
6ed4f044
DR
42libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
43endif
44
340f6e7a
UH
45if LA_ASIX_SIGMA
46libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
47endif
48
f4314d7e
UH
49if LA_CHRONOVU_LA8
50libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
51endif
52
ca3d84cc
BV
53if LA_DEMO
54libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
55endif
56
f302a082
JH
57if LA_FX2LAFW
58libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
59endif
60
ca3d84cc
BV
61if HW_GENERICDMM
62libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
cfd8b10a
DR
63endif
64
bffed4fc
UH
65if LA_LINK_MSO19
66libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
67endif
01cf8814 68
340f6e7a
UH
69if LA_OLS
70libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
71endif
72
340f6e7a
UH
73if LA_ZEROPLUS_LOGIC_CUBE
74libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
75endif
76
3b533202
BV
77if HW_HANTEK_DSO
78libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
79endif
80
eb1f1eb4
UH
81if HW_MASTECH_VA18B
82libsigrokhardware_la_LIBADD += mastech-va18b/libsigrokhw_mastech_va18b.la
83endif
84