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