]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
Remove some radioshack-dmm leftovers.
[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         serial-dmm \
35         tondaj-sl-814 \
36         uni-t-dmm \
37         victor-dmm \
38         zeroplus-logic-cube
39
40 noinst_LTLIBRARIES = libsigrokhardware.la
41
42 libsigrokhardware_la_SOURCES =
43
44 libsigrokhardware_la_LIBADD = \
45         common/libsigrokhwcommon.la
46
47 if HW_AGILENT_DMM
48 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
49 endif
50
51 if LA_ALSA
52 libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
53 endif
54
55 if LA_ASIX_SIGMA
56 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
57 endif
58
59 if LA_CHRONOVU_LA8
60 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
61 endif
62
63 if HW_COLEAD_SLM
64 libsigrokhardware_la_LIBADD += colead-slm/libsigrok_hw_colead_slm.la
65 endif
66
67 if LA_DEMO
68 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
69 endif
70
71 if HW_FLUKE_DMM
72 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
73 endif
74
75 if LA_FX2LAFW
76 libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
77 endif
78
79 if HW_HANTEK_DSO
80 libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
81 endif
82
83 if LA_LINK_MSO19
84 libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
85 endif
86
87 if LA_OLS
88 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
89 endif
90
91 if HW_SERIAL_DMM
92 libsigrokhardware_la_LIBADD += serial-dmm/libsigrokhwserialdmm.la
93 endif
94
95 if HW_TONDAJ_SL_814
96 libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
97 endif
98
99 if HW_UNI_T_DMM
100 libsigrokhardware_la_LIBADD += uni-t-dmm/libsigrok_hw_uni_t_dmm.la
101 endif
102
103 if HW_VICTOR_DMM
104 libsigrokhardware_la_LIBADD += victor-dmm/libsigrok_hw_victor_dmm.la
105 endif
106
107 if LA_ZEROPLUS_LOGIC_CUBE
108 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
109 endif
110