]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
Drop link-mso19/nexus-osciprime in preparation for release.
[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         asix-sigma \
25         brymen-dmm \
26         chronovu-la8 \
27         colead-slm \
28         common \
29         demo \
30         fluke-dmm \
31         fx2lafw \
32         hantek-dso \
33         lascar-el-usb \
34         mic-985xx \
35         openbench-logic-sniffer \
36         rigol-ds1xx2 \
37         serial-dmm \
38         tondaj-sl-814 \
39         uni-t-dmm \
40         victor-dmm \
41         zeroplus-logic-cube
42
43 noinst_LTLIBRARIES = libsigrokhardware.la
44
45 libsigrokhardware_la_SOURCES =
46
47 libsigrokhardware_la_LIBADD = \
48         common/libsigrokhwcommon.la
49
50 if HW_AGILENT_DMM
51 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
52 endif
53
54 if HW_ALSA
55 libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
56 endif
57
58 if LA_ASIX_SIGMA
59 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
60 endif
61
62 if HW_BRYMEN_DMM
63 libsigrokhardware_la_LIBADD += brymen-dmm/libsigrok_hw_brymen_dmm.la
64 endif
65
66 if LA_CHRONOVU_LA8
67 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
68 endif
69
70 if HW_COLEAD_SLM
71 libsigrokhardware_la_LIBADD += colead-slm/libsigrok_hw_colead_slm.la
72 endif
73
74 if LA_DEMO
75 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
76 endif
77
78 if HW_FLUKE_DMM
79 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
80 endif
81
82 if LA_FX2LAFW
83 libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
84 endif
85
86 if HW_HANTEK_DSO
87 libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
88 endif
89
90 if HW_LASCAR_EL_USB
91 libsigrokhardware_la_LIBADD += lascar-el-usb/libsigrok_hw_lascar_el_usb.la
92 endif
93
94 if HW_MIC_985XX
95 libsigrokhardware_la_LIBADD += mic-985xx/libsigrok_hw_mic_985xx.la
96 endif
97
98 if LA_OLS
99 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
100 endif
101
102 if HW_RIGOL_DS1XX2
103 libsigrokhardware_la_LIBADD += rigol-ds1xx2/libsigrok_hw_rigol_ds1xx2.la
104 endif
105
106 if HW_SERIAL_DMM
107 libsigrokhardware_la_LIBADD += serial-dmm/libsigrokhwserialdmm.la
108 endif
109
110 if HW_TONDAJ_SL_814
111 libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
112 endif
113
114 if HW_UNI_T_DMM
115 libsigrokhardware_la_LIBADD += uni-t-dmm/libsigrok_hw_uni_t_dmm.la
116 endif
117
118 if HW_VICTOR_DMM
119 libsigrokhardware_la_LIBADD += victor-dmm/libsigrok_hw_victor_dmm.la
120 endif
121
122 if LA_ZEROPLUS_LOGIC_CUBE
123 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
124 endif
125