]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
sr: add genericdmm driver
[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 ##
6 ## This program is free software: you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation, either version 3 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 ##
19
20 SUBDIRS = \
21         alsa \
22         asix-sigma \
23         chronovu-la8 \
24         common \
25         demo \
26         fx2lafw \
27         genericdmm \
28         link-mso19 \
29         openbench-logic-sniffer \
30         zeroplus-logic-cube \
31         hantek-dso \
32         mastech-va18b
33
34 noinst_LTLIBRARIES = libsigrokhardware.la
35
36 libsigrokhardware_la_SOURCES =
37
38 libsigrokhardware_la_LIBADD = \
39         common/libsigrokhwcommon.la
40
41 if LA_ALSA
42 libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
43 endif
44
45 if LA_ASIX_SIGMA
46 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
47 endif
48
49 if LA_CHRONOVU_LA8
50 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
51 endif
52
53 if LA_DEMO
54 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
55 endif
56
57 if LA_FX2LAFW
58 libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
59 endif
60
61 if HW_GENERICDMM
62 libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
63 endif
64
65 if LA_LINK_MSO19
66 libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
67 endif
68
69 if LA_OLS
70 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
71 endif
72
73 if LA_ZEROPLUS_LOGIC_CUBE
74 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
75 endif
76
77 if HW_HANTEK_DSO
78 libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
79 endif
80
81 if HW_MASTECH_VA18B
82 libsigrokhardware_la_LIBADD += mastech-va18b/libsigrokhw_mastech_va18b.la
83 endif
84