]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
Add support for the TekPower TP4000ZC DMM.
[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         common \
27         demo \
28         fluke-dmm \
29         fx2lafw \
30         genericdmm \
31         hantek-dso \
32         link-mso19 \
33         openbench-logic-sniffer \
34         radioshack-dmm \
35         tekpower-dmm \
36         zeroplus-logic-cube
37
38 noinst_LTLIBRARIES = libsigrokhardware.la
39
40 libsigrokhardware_la_SOURCES =
41
42 libsigrokhardware_la_LIBADD = \
43         common/libsigrokhwcommon.la
44
45 if HW_AGILENT_DMM
46 libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
47 endif
48
49 if LA_ALSA
50 libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
51 endif
52
53 if LA_ASIX_SIGMA
54 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
55 endif
56
57 if LA_CHRONOVU_LA8
58 libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
59 endif
60
61 if LA_DEMO
62 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
63 endif
64
65 if HW_FLUKE_DMM
66 libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
67 endif
68
69 if LA_FX2LAFW
70 libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
71 endif
72
73 if HW_GENERICDMM
74 libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
75 endif
76
77 if HW_HANTEK_DSO
78 libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
79 endif
80
81 if LA_LINK_MSO19
82 libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
83 endif
84
85 if LA_OLS
86 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
87 endif
88
89 if HW_RADIOSHACK_DMM
90 libsigrokhardware_la_LIBADD += radioshack-dmm/libsigrokhwradioshackdmm.la
91 endif
92
93 if HW_TEKPOWER_DMM
94 libsigrokhardware_la_LIBADD += tekpower-dmm/libsigrokhwtekpowerdmm.la
95 endif
96
97 if LA_ZEROPLUS_LOGIC_CUBE
98 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
99 endif
100