]> sigrok.org Git - libsigrok.git/blame - hardware/Makefile.am
HACKING: "Adding a new hardware driver" chapter.
[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>
d375b3c3 5## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
340f6e7a
UH
6##
7## This program is free software: you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation, either version 3 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
18## along with this program. If not, see <http://www.gnu.org/licenses/>.
19##
20
21SUBDIRS = \
6ac0db19 22 agilent-dmm \
6ed4f044 23 alsa \
340f6e7a 24 asix-sigma \
f4314d7e 25 chronovu-la8 \
340f6e7a
UH
26 common \
27 demo \
883a2e9e 28 fluke-dmm \
f302a082 29 fx2lafw \
ca3d84cc 30 genericdmm \
589a1013 31 hantek-dso \
bffed4fc 32 link-mso19 \
340f6e7a 33 openbench-logic-sniffer \
589a1013
BV
34 radioshack-dmm \
35 zeroplus-logic-cube
340f6e7a
UH
36
37noinst_LTLIBRARIES = libsigrokhardware.la
38
39libsigrokhardware_la_SOURCES =
40
41libsigrokhardware_la_LIBADD = \
a61b0e6a
UH
42 common/libsigrokhwcommon.la
43
6ac0db19
BV
44if HW_AGILENT_DMM
45libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
46endif
47
921a4c74 48if LA_ALSA
6ed4f044
DR
49libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
50endif
51
340f6e7a
UH
52if LA_ASIX_SIGMA
53libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
54endif
55
f4314d7e
UH
56if LA_CHRONOVU_LA8
57libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
58endif
59
ca3d84cc
BV
60if LA_DEMO
61libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
62endif
63
883a2e9e
BV
64if HW_FLUKE_DMM
65libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
66endif
67
f302a082
JH
68if LA_FX2LAFW
69libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
70endif
71
ca3d84cc
BV
72if HW_GENERICDMM
73libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
cfd8b10a
DR
74endif
75
589a1013
BV
76if HW_HANTEK_DSO
77libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
78endif
79
bffed4fc
UH
80if LA_LINK_MSO19
81libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
82endif
01cf8814 83
340f6e7a
UH
84if LA_OLS
85libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
86endif
87
589a1013
BV
88if HW_RADIOSHACK_DMM
89libsigrokhardware_la_LIBADD += radioshack-dmm/libsigrokhwradioshackdmm.la
340f6e7a
UH
90endif
91
589a1013
BV
92if LA_ZEROPLUS_LOGIC_CUBE
93libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
3b533202
BV
94endif
95