]> sigrok.org Git - libsigrok.git/blame_incremental - hardware/Makefile.am
sr: Refactored sr_samplerate_string into a more general function: sr_si_string_u64
[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##
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
20SUBDIRS = \
21 agilent-dmm \
22 alsa \
23 asix-sigma \
24 chronovu-la8 \
25 common \
26 demo \
27 fx2lafw \
28 genericdmm \
29 link-mso19 \
30 openbench-logic-sniffer \
31 zeroplus-logic-cube \
32 hantek-dso
33
34noinst_LTLIBRARIES = libsigrokhardware.la
35
36libsigrokhardware_la_SOURCES =
37
38libsigrokhardware_la_LIBADD = \
39 common/libsigrokhwcommon.la
40
41if HW_AGILENT_DMM
42libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
43endif
44
45if LA_ALSA
46libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
47endif
48
49if LA_ASIX_SIGMA
50libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
51endif
52
53if LA_CHRONOVU_LA8
54libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
55endif
56
57if LA_DEMO
58libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
59endif
60
61if LA_FX2LAFW
62libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
63endif
64
65if HW_GENERICDMM
66libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
67endif
68
69if LA_LINK_MSO19
70libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
71endif
72
73if LA_OLS
74libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
75endif
76
77if LA_ZEROPLUS_LOGIC_CUBE
78libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
79endif
80
81if HW_HANTEK_DSO
82libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
83endif
84