]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
ikalogic-scanalogic2: 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         asix-sigma \
25         brymen-dmm \
26         chronovu-la8 \
27         colead-slm \
28         common \
29         demo \
30         fluke-dmm \
31         fx2lafw \
32         hantek-dso \
33         ikalogic-scanalogic2 \
34         lascar-el-usb \
35         link-mso19 \
36         mic-985xx \
37         nexus-osciprime \
38         openbench-logic-sniffer \
39         rigol-ds1xx2 \
40         serial-dmm \
41         tondaj-sl-814 \
42         uni-t-dmm \
43         victor-dmm \
44         zeroplus-logic-cube
45
46 noinst_LTLIBRARIES = libsigrokhardware.la
47
48 libsigrokhardware_la_SOURCES =
49
50 libsigrokhardware_la_LIBADD = \
51         common/libsigrok_hw_common.la
52
53 if HW_AGILENT_DMM
54 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrok_hw_agilent_dmm.la
55 endif
56
57 if HW_ALSA
58 libsigrokhardware_la_LIBADD += alsa/libsigrok_hw_alsa.la
59 endif
60
61 if HW_ASIX_SIGMA
62 libsigrokhardware_la_LIBADD += asix-sigma/libsigrok_hw_asix_sigma.la
63 endif
64
65 if HW_BRYMEN_DMM
66 libsigrokhardware_la_LIBADD += brymen-dmm/libsigrok_hw_brymen_dmm.la
67 endif
68
69 if HW_CHRONOVU_LA8
70 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrok_hw_chronovu_la8.la
71 endif
72
73 if HW_COLEAD_SLM
74 libsigrokhardware_la_LIBADD += colead-slm/libsigrok_hw_colead_slm.la
75 endif
76
77 if HW_DEMO
78 libsigrokhardware_la_LIBADD += demo/libsigrok_hw_demo.la
79 endif
80
81 if HW_FLUKE_DMM
82 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrok_hw_fluke_dmm.la
83 endif
84
85 if HW_FX2LAFW
86 libsigrokhardware_la_LIBADD += fx2lafw/libsigrok_hw_fx2lafw.la
87 endif
88
89 if HW_HANTEK_DSO
90 libsigrokhardware_la_LIBADD += hantek-dso/libsigrok_hw_hantek_dso.la
91 endif
92
93 if HW_IKALOGIC_SCANALOGIC2
94 libsigrokhardware_la_LIBADD += ikalogic-scanalogic2/libsigrok_hw_ikalogic_scanalogic2.la
95 endif
96
97 if HW_LASCAR_EL_USB
98 libsigrokhardware_la_LIBADD += lascar-el-usb/libsigrok_hw_lascar_el_usb.la
99 endif
100
101 if HW_LINK_MSO19
102 libsigrokhardware_la_LIBADD += link-mso19/libsigrok_hw_link_mso_19.la
103 endif
104
105 if HW_MIC_985XX
106 libsigrokhardware_la_LIBADD += mic-985xx/libsigrok_hw_mic_985xx.la
107 endif
108
109 if HW_NEXUS_OSCIPRIME
110 libsigrokhardware_la_LIBADD += nexus-osciprime/libsigrok_hw_nexus_osciprime.la
111 endif
112
113 if HW_OLS
114 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrok_hw_ols.la
115 endif
116
117 if HW_RIGOL_DS1XX2
118 libsigrokhardware_la_LIBADD += rigol-ds1xx2/libsigrok_hw_rigol_ds1xx2.la
119 endif
120
121 if HW_SERIAL_DMM
122 libsigrokhardware_la_LIBADD += serial-dmm/libsigrok_hw_serial_dmm.la
123 endif
124
125 if HW_TONDAJ_SL_814
126 libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
127 endif
128
129 if HW_UNI_T_DMM
130 libsigrokhardware_la_LIBADD += uni-t-dmm/libsigrok_hw_uni_t_dmm.la
131 endif
132
133 if HW_VICTOR_DMM
134 libsigrokhardware_la_LIBADD += victor-dmm/libsigrok_hw_victor_dmm.la
135 endif
136
137 if HW_ZEROPLUS_LOGIC_CUBE
138 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrok_hw_zeroplus.la
139 endif
140