]> sigrok.org Git - libsigrok.git/blob - hardware/Makefile.am
Disable Link Instruments MSO-19 for 0.1.
[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         asix-sigma \
22         common \
23         demo \
24         openbench-logic-sniffer \
25         saleae-logic \
26         zeroplus-logic-cube
27
28 noinst_LTLIBRARIES = libsigrokhardware.la
29
30 libsigrokhardware_la_SOURCES =
31
32 libsigrokhardware_la_LIBADD = \
33         common/libsigrokhwcommon.la
34
35 if LA_DEMO
36 libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
37 endif
38
39 if LA_ASIX_SIGMA
40 libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
41 endif
42
43 # if LA_LINK_MSO19
44 # libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
45 # endif
46
47 if LA_OLS
48 libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
49 endif
50
51 if LA_SALEAE_LOGIC
52 libsigrokhardware_la_LIBADD += saleae-logic/libsigrokhwsaleaelogic.la
53 endif
54
55 if LA_ZEROPLUS_LOGIC_CUBE
56 libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
57 endif
58