]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
scpi_usbtmc_libusb.c: Fix two error checks.
[libsigrok.git] / hardware / Makefile.am
1 ##
2 ## This file is part of the libsigrok 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         appa-55ii \
25         asix-sigma \
26         atten-pps3xxx \
27         brymen-bm86x \
28         brymen-dmm \
29         cem-dt-885x \
30         center-3xx \
31         chronovu-la8 \
32         colead-slm \
33         common \
34         conrad-digi-35-cpu \
35         demo \
36         fluke-dmm \
37         fx2lafw \
38         gmc-mh-1x-2x \
39         hameg-hmo \
40         hantek-dso \
41         ikalogic-scanalogic2 \
42         ikalogic-scanaplus \
43         kecheng-kc-330b \
44         lascar-el-usb \
45         link-mso19 \
46         mic-985xx \
47         norma-dmm \
48         openbench-logic-sniffer \
49         rigol-ds \
50         saleae-logic16 \
51         serial-dmm \
52         sysclk-lwla \
53         teleinfo \
54         tondaj-sl-814 \
55         uni-t-dmm \
56         uni-t-ut32x \
57         victor-dmm \
58         zeroplus-logic-cube
59
60 noinst_LTLIBRARIES = libsigrokhardware.la
61
62 libsigrokhardware_la_SOURCES =
63
64 libsigrokhardware_la_LIBADD = \
65         common/libsigrok_hw_common.la
66
67 if HW_AGILENT_DMM
68 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrok_hw_agilent_dmm.la
69 endif
70
71 if HW_ALSA
72 libsigrokhardware_la_LIBADD += alsa/libsigrok_hw_alsa.la
73 endif
74
75 if HW_APPA_55II
76 libsigrokhardware_la_LIBADD += appa-55ii/libsigrok_hw_appa_55ii.la
77 endif
78
79 if HW_ASIX_SIGMA
80 libsigrokhardware_la_LIBADD += asix-sigma/libsigrok_hw_asix_sigma.la
81 endif
82
83 if HW_ATTEN_PPS3XXX
84 libsigrokhardware_la_LIBADD += atten-pps3xxx/libsigrok_hw_atten_pps3xxx.la
85 endif
86
87 if HW_BRYMEN_BM86X
88 libsigrokhardware_la_LIBADD += brymen-bm86x/libsigrok_hw_brymen_bm86x.la
89 endif
90
91 if HW_BRYMEN_DMM
92 libsigrokhardware_la_LIBADD += brymen-dmm/libsigrok_hw_brymen_dmm.la
93 endif
94
95 if HW_CEM_DT_885X
96 libsigrokhardware_la_LIBADD += cem-dt-885x/libsigrok_hw_cem_dt_885x.la
97 endif
98
99 if HW_CENTER_3XX
100 libsigrokhardware_la_LIBADD += center-3xx/libsigrok_hw_center_3xx.la
101 endif
102
103 if HW_CHRONOVU_LA8
104 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrok_hw_chronovu_la8.la
105 endif
106
107 if HW_COLEAD_SLM
108 libsigrokhardware_la_LIBADD += colead-slm/libsigrok_hw_colead_slm.la
109 endif
110
111 if HW_CONRAD_DIGI_35_CPU
112 libsigrokhardware_la_LIBADD += conrad-digi-35-cpu/libsigrok_hw_conrad_digi_35_cpu.la
113 endif
114
115 if HW_DEMO
116 libsigrokhardware_la_LIBADD += demo/libsigrok_hw_demo.la
117 endif
118
119 if HW_FLUKE_DMM
120 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrok_hw_fluke_dmm.la
121 endif
122
123 if HW_FX2LAFW
124 libsigrokhardware_la_LIBADD += fx2lafw/libsigrok_hw_fx2lafw.la
125 endif
126
127 if HW_GMC_MH_1X_2X
128 libsigrokhardware_la_LIBADD += gmc-mh-1x-2x/libsigrok_hw_gmc_mh_1x_2x.la
129 endif
130
131 if HW_HAMEG_HMO
132 libsigrokhardware_la_LIBADD += hameg-hmo/libsigrok_hw_hameg_hmo.la
133 endif
134
135 if HW_HANTEK_DSO
136 libsigrokhardware_la_LIBADD += hantek-dso/libsigrok_hw_hantek_dso.la
137 endif
138
139 if HW_IKALOGIC_SCANALOGIC2
140 libsigrokhardware_la_LIBADD += ikalogic-scanalogic2/libsigrok_hw_ikalogic_scanalogic2.la
141 endif
142
143 if HW_IKALOGIC_SCANAPLUS
144 libsigrokhardware_la_LIBADD += ikalogic-scanaplus/libsigrok_hw_ikalogic_scanaplus.la
145 endif
146
147 if HW_KECHENG_KC_330B
148 libsigrokhardware_la_LIBADD += kecheng-kc-330b/libsigrok_hw_kecheng_kc_330b.la
149 endif
150
151 if HW_LASCAR_EL_USB
152 libsigrokhardware_la_LIBADD += lascar-el-usb/libsigrok_hw_lascar_el_usb.la
153 endif
154
155 if HW_LINK_MSO19
156 libsigrokhardware_la_LIBADD += link-mso19/libsigrok_hw_link_mso_19.la
157 endif
158
159 if HW_MIC_985XX
160 libsigrokhardware_la_LIBADD += mic-985xx/libsigrok_hw_mic_985xx.la
161 endif
162
163 if HW_NORMA_DMM
164 libsigrokhardware_la_LIBADD += norma-dmm/libsigrok_hw_norma_dmm.la
165 endif
166
167 if HW_OLS
168 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrok_hw_ols.la
169 endif
170
171 if HW_RIGOL_DS
172 libsigrokhardware_la_LIBADD += rigol-ds/libsigrok_hw_rigol_ds.la
173 endif
174
175 if HW_SALEAE_LOGIC16
176 libsigrokhardware_la_LIBADD += saleae-logic16/libsigrok_hw_saleae_logic16.la
177 endif
178
179 if HW_SERIAL_DMM
180 libsigrokhardware_la_LIBADD += serial-dmm/libsigrok_hw_serial_dmm.la
181 endif
182
183 if HW_SYSCLK_LWLA
184 libsigrokhardware_la_LIBADD += sysclk-lwla/libsigrok_hw_sysclk_lwla.la
185 endif
186
187 if HW_TELEINFO
188 libsigrokhardware_la_LIBADD += teleinfo/libsigrok_hw_teleinfo.la
189 endif
190
191 if HW_TONDAJ_SL_814
192 libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
193 endif
194
195 if HW_UNI_T_DMM
196 libsigrokhardware_la_LIBADD += uni-t-dmm/libsigrok_hw_uni_t_dmm.la
197 endif
198
199 if HW_UNI_T_UT32X
200 libsigrokhardware_la_LIBADD += uni-t-ut32x/libsigrok_hw_uni_t_ut32x.la
201 endif
202
203 if HW_VICTOR_DMM
204 libsigrokhardware_la_LIBADD += victor-dmm/libsigrok_hw_victor_dmm.la
205 endif
206
207 if HW_ZEROPLUS_LOGIC_CUBE
208 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrok_hw_zeroplus.la
209 endif
210