]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
fluke-dmm: initial driver skeleton
[libsigrok.git] / hardware / Makefile.am
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
20 SUBDIRS = \
21         agilent-dmm \
22         alsa \
23         asix-sigma \
24         chronovu-la8 \
25         common \
26         demo \
27         fluke-dmm \
28         fx2lafw \
29         genericdmm \
30         link-mso19 \
31         openbench-logic-sniffer \
32         zeroplus-logic-cube \
33         hantek-dso
34
35 noinst_LTLIBRARIES = libsigrokhardware.la
36
37 libsigrokhardware_la_SOURCES =
38
39 libsigrokhardware_la_LIBADD = \
40         common/libsigrokhwcommon.la
41
42 if HW_AGILENT_DMM
43 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
44 endif
45
46 if LA_ALSA
47 libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
48 endif
49
50 if LA_ASIX_SIGMA
51 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
52 endif
53
54 if LA_CHRONOVU_LA8
55 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
56 endif
57
58 if LA_DEMO
59 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
60 endif
61
62 if HW_FLUKE_DMM
63 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
64 endif
65
66 if LA_FX2LAFW
67 libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
68 endif
69
70 if HW_GENERICDMM
71 libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
72 endif
73
74 if LA_LINK_MSO19
75 libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
76 endif
77
78 if LA_OLS
79 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
80 endif
81
82 if LA_ZEROPLUS_LOGIC_CUBE
83 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
84 endif
85
86 if HW_HANTEK_DSO
87 libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
88 endif
89