2011-01-08 02:32:25 +00:00
|
|
|
##
|
|
|
|
## This file is part of the sigrok project.
|
|
|
|
##
|
|
|
|
## Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
|
2012-10-15 06:17:32 +00:00
|
|
|
## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
|
2011-01-08 02:32:25 +00:00
|
|
|
##
|
|
|
|
## This program is free software: you can redistribute it and/or modify
|
|
|
|
## it under the terms of the GNU General Public License as published by
|
|
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
|
|
## (at your option) any later version.
|
|
|
|
##
|
|
|
|
## This program is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
SUBDIRS = \
|
2012-09-02 09:58:29 +00:00
|
|
|
agilent-dmm \
|
2011-01-22 02:57:27 +00:00
|
|
|
alsa \
|
2011-01-08 02:32:25 +00:00
|
|
|
asix-sigma \
|
2011-04-04 17:40:30 +00:00
|
|
|
chronovu-la8 \
|
2011-01-08 02:32:25 +00:00
|
|
|
common \
|
|
|
|
demo \
|
2012-09-10 20:31:29 +00:00
|
|
|
fluke-dmm \
|
2012-02-11 12:08:49 +00:00
|
|
|
fx2lafw \
|
2012-07-01 20:37:15 +00:00
|
|
|
genericdmm \
|
2012-10-20 23:34:34 +00:00
|
|
|
hantek-dso \
|
2011-01-19 23:39:59 +00:00
|
|
|
link-mso19 \
|
2011-01-08 02:32:25 +00:00
|
|
|
openbench-logic-sniffer \
|
2012-10-20 23:34:34 +00:00
|
|
|
radioshack-dmm \
|
|
|
|
zeroplus-logic-cube
|
2011-01-08 02:32:25 +00:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libsigrokhardware.la
|
|
|
|
|
|
|
|
libsigrokhardware_la_SOURCES =
|
|
|
|
|
|
|
|
libsigrokhardware_la_LIBADD = \
|
2011-01-11 21:17:33 +00:00
|
|
|
common/libsigrokhwcommon.la
|
|
|
|
|
2012-09-02 09:58:29 +00:00
|
|
|
if HW_AGILENT_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += agilent-dmm/libsigrokhwagilentdmm.la
|
|
|
|
endif
|
|
|
|
|
2011-01-22 03:01:53 +00:00
|
|
|
if LA_ALSA
|
2011-01-22 02:57:27 +00:00
|
|
|
libsigrokhardware_la_LIBADD += alsa/libsigrokhwalsa.la
|
|
|
|
endif
|
|
|
|
|
2011-01-08 02:32:25 +00:00
|
|
|
if LA_ASIX_SIGMA
|
|
|
|
libsigrokhardware_la_LIBADD += asix-sigma/libsigrokhwasixsigma.la
|
|
|
|
endif
|
|
|
|
|
2011-04-04 17:40:30 +00:00
|
|
|
if LA_CHRONOVU_LA8
|
|
|
|
libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
|
|
|
|
endif
|
|
|
|
|
2012-07-01 20:37:15 +00:00
|
|
|
if LA_DEMO
|
|
|
|
libsigrokhardware_la_LIBADD += demo/libsigrokhwdemo.la
|
|
|
|
endif
|
|
|
|
|
2012-09-10 20:31:29 +00:00
|
|
|
if HW_FLUKE_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += fluke-dmm/libsigrokhwflukedmm.la
|
|
|
|
endif
|
|
|
|
|
2012-02-11 12:08:49 +00:00
|
|
|
if LA_FX2LAFW
|
|
|
|
libsigrokhardware_la_LIBADD += fx2lafw/libsigrokhwfx2lafw.la
|
|
|
|
endif
|
|
|
|
|
2012-07-01 20:37:15 +00:00
|
|
|
if HW_GENERICDMM
|
|
|
|
libsigrokhardware_la_LIBADD += genericdmm/libsigrokhwgenericdmm.la
|
2011-01-22 00:02:32 +00:00
|
|
|
endif
|
|
|
|
|
2012-10-20 23:34:34 +00:00
|
|
|
if HW_HANTEK_DSO
|
|
|
|
libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
|
|
|
|
endif
|
|
|
|
|
2011-01-19 23:39:59 +00:00
|
|
|
if LA_LINK_MSO19
|
|
|
|
libsigrokhardware_la_LIBADD += link-mso19/libsigrokhwlinkmso19.la
|
|
|
|
endif
|
2011-01-10 17:15:51 +00:00
|
|
|
|
2011-01-08 02:32:25 +00:00
|
|
|
if LA_OLS
|
|
|
|
libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
|
|
|
|
endif
|
|
|
|
|
2012-10-20 23:34:34 +00:00
|
|
|
if HW_RADIOSHACK_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += radioshack-dmm/libsigrokhwradioshackdmm.la
|
2011-01-08 02:32:25 +00:00
|
|
|
endif
|
|
|
|
|
2012-10-20 23:34:34 +00:00
|
|
|
if LA_ZEROPLUS_LOGIC_CUBE
|
|
|
|
libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrokhwzeroplus.la
|
2012-04-22 23:05:58 +00:00
|
|
|
endif
|
|
|
|
|