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