]> sigrok.org Git - libsigrok.git/blame - hardware/Makefile.am
libsigrok.h: Add measured quantity and units used by Radioshack 22-812
[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 = \
6ac0db19 21 agilent-dmm \
6ed4f044 22 alsa \
340f6e7a 23 asix-sigma \
f4314d7e 24 chronovu-la8 \
340f6e7a
UH
25 common \
26 demo \
883a2e9e 27 fluke-dmm \
f302a082 28 fx2lafw \
ca3d84cc 29 genericdmm \
bffed4fc 30 link-mso19 \
340f6e7a 31 openbench-logic-sniffer \
3b533202 32 zeroplus-logic-cube \
615183ea 33 hantek-dso
340f6e7a
UH
34
35noinst_LTLIBRARIES = libsigrokhardware.la
36
37libsigrokhardware_la_SOURCES =
38
39libsigrokhardware_la_LIBADD = \
a61b0e6a
UH
40 common/libsigrokhwcommon.la
41
6ac0db19
BV
42if HW_AGILENT_DMM
43libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
44endif
45
921a4c74 46if LA_ALSA
6ed4f044
DR
47libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
48endif
49
340f6e7a
UH
50if LA_ASIX_SIGMA
51libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
52endif
53
f4314d7e
UH
54if LA_CHRONOVU_LA8
55libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
56endif
57
ca3d84cc
BV
58if LA_DEMO
59libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
60endif
61
883a2e9e
BV
62if HW_FLUKE_DMM
63libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
64endif
65
f302a082
JH
66if LA_FX2LAFW
67libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
68endif
69
ca3d84cc
BV
70if HW_GENERICDMM
71libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
cfd8b10a
DR
72endif
73
bffed4fc
UH
74if LA_LINK_MSO19
75libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
76endif
01cf8814 77
340f6e7a
UH
78if LA_OLS
79libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
80endif
81
340f6e7a
UH
82if LA_ZEROPLUS_LOGIC_CUBE
83libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
84endif
85
3b533202
BV
86if HW_HANTEK_DSO
87libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
88endif
89