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