]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/Makefile.am
sr: initial support for Hantek 2xxx/5200 USB oscilloscopes
[libsigrok.git] / hardware / Makefile.am
... / ...
CommitLineData
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 alsa \
22 asix-sigma \
23 chronovu-la8 \
24 common \
25 demo \
26 fx2lafw \
27 link-mso19 \
28 openbench-logic-sniffer \
29 zeroplus-logic-cube \
30 hantek-dso
31
32noinst_LTLIBRARIES = libsigrokhardware.la
33
34libsigrokhardware_la_SOURCES =
35
36libsigrokhardware_la_LIBADD = \
37 common/libsigrokhwcommon.la
38
39if LA_ALSA
40libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
41endif
42
43if LA_ASIX_SIGMA
44libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
45endif
46
47if LA_CHRONOVU_LA8
48libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
49endif
50
51if LA_FX2LAFW
52libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
53endif
54
55if LA_DEMO
56libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
57endif
58
59if LA_LINK_MSO19
60libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
61endif
62
63if LA_OLS
64libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
65endif
66
67if LA_ZEROPLUS_LOGIC_CUBE
68libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
69endif
70
71if HW_HANTEK_DSO
72libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
73endif
74