]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
Drop obsolete genericdmm driver.
[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 ## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
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
21 SUBDIRS = \
22         agilent-dmm \
23         alsa \
24         asix-sigma \
25         chronovu-la8 \
26         colead-slm \
27         common \
28         demo \
29         fluke-dmm \
30         fx2lafw \
31         hantek-dso \
32         link-mso19 \
33         openbench-logic-sniffer \
34         radioshack-dmm \
35         tekpower-dmm \
36         tondaj-sl-814 \
37         uni-t-dmm \
38         victor-dmm \
39         zeroplus-logic-cube
40
41 noinst_LTLIBRARIES = libsigrokhardware.la
42
43 libsigrokhardware_la_SOURCES =
44
45 libsigrokhardware_la_LIBADD = \
46         common/libsigrokhwcommon.la
47
48 if HW_AGILENT_DMM
49 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
50 endif
51
52 if LA_ALSA
53 libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
54 endif
55
56 if LA_ASIX_SIGMA
57 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
58 endif
59
60 if LA_CHRONOVU_LA8
61 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
62 endif
63
64 if HW_COLEAD_SLM
65 libsigrokhardware_la_LIBADD += colead-slm/libsigrok_hw_colead_slm.la
66 endif
67
68 if LA_DEMO
69 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
70 endif
71
72 if HW_FLUKE_DMM
73 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
74 endif
75
76 if LA_FX2LAFW
77 libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
78 endif
79
80 if HW_HANTEK_DSO
81 libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
82 endif
83
84 if LA_LINK_MSO19
85 libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
86 endif
87
88 if LA_OLS
89 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
90 endif
91
92 if HW_RADIOSHACK_DMM
93 libsigrokhardware_la_LIBADD += radioshack-dmm/libsigrokhwradioshackdmm.la
94 endif
95
96 if HW_TEKPOWER_DMM
97 libsigrokhardware_la_LIBADD += tekpower-dmm/libsigrokhwtekpowerdmm.la
98 endif
99
100 if HW_TONDAJ_SL_814
101 libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
102 endif
103
104 if HW_UNI_T_DMM
105 libsigrokhardware_la_LIBADD += uni-t-dmm/libsigrok_hw_uni_t_dmm.la
106 endif
107
108 if HW_VICTOR_DMM
109 libsigrokhardware_la_LIBADD += victor-dmm/libsigrok_hw_victor_dmm.la
110 endif
111
112 if LA_ZEROPLUS_LOGIC_CUBE
113 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
114 endif
115