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 \
|
2012-11-22 03:20:39 +00:00
|
|
|
brymen-dmm \
|
2011-04-04 17:40:30 +00:00
|
|
|
chronovu-la8 \
|
2012-10-29 21:33:47 +00:00
|
|
|
colead-slm \
|
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-10-20 23:34:34 +00:00
|
|
|
hantek-dso \
|
2012-11-27 16:40:14 +00:00
|
|
|
lascar-el-usb \
|
2011-01-19 23:39:59 +00:00
|
|
|
link-mso19 \
|
2013-01-30 15:58:01 +00:00
|
|
|
mic-985xx \
|
2012-12-24 19:11:38 +00:00
|
|
|
nexus-osciprime \
|
2011-01-08 02:32:25 +00:00
|
|
|
openbench-logic-sniffer \
|
2012-12-29 21:22:10 +00:00
|
|
|
rigol-ds1xx2 \
|
2012-12-01 18:35:19 +00:00
|
|
|
serial-dmm \
|
2012-11-09 02:33:05 +00:00
|
|
|
tondaj-sl-814 \
|
2012-10-27 20:41:50 +00:00
|
|
|
uni-t-dmm \
|
2012-11-02 19:47:06 +00:00
|
|
|
victor-dmm \
|
2012-10-20 23:34:34 +00:00
|
|
|
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
|
|
|
|
|
2012-12-17 18:39:13 +00:00
|
|
|
if HW_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
|
|
|
|
|
2012-11-22 03:20:39 +00:00
|
|
|
if HW_BRYMEN_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += brymen-dmm/libsigrok_hw_brymen_dmm.la
|
|
|
|
endif
|
|
|
|
|
2011-04-04 17:40:30 +00:00
|
|
|
if LA_CHRONOVU_LA8
|
|
|
|
libsigrokhardware_la_LIBADD += chronovu-la8/libsigrokhwchronovula8.la
|
|
|
|
endif
|
|
|
|
|
2012-10-29 21:33:47 +00:00
|
|
|
if HW_COLEAD_SLM
|
|
|
|
libsigrokhardware_la_LIBADD += colead-slm/libsigrok_hw_colead_slm.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-10-20 23:34:34 +00:00
|
|
|
if HW_HANTEK_DSO
|
|
|
|
libsigrokhardware_la_LIBADD += hantek-dso/libsigrokhw_hantek_dso.la
|
|
|
|
endif
|
|
|
|
|
2012-11-27 16:40:14 +00:00
|
|
|
if HW_LASCAR_EL_USB
|
|
|
|
libsigrokhardware_la_LIBADD += lascar-el-usb/libsigrok_hw_lascar_el_usb.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
|
|
|
|
2013-01-30 15:58:01 +00:00
|
|
|
if HW_MIC_985XX
|
|
|
|
libsigrokhardware_la_LIBADD += mic-985xx/libsigrok_hw_mic_985xx.la
|
|
|
|
endif
|
|
|
|
|
2012-12-24 19:11:38 +00:00
|
|
|
if HW_NEXUS_OSCIPRIME
|
|
|
|
libsigrokhardware_la_LIBADD += nexus-osciprime/libsigrok_hw_nexus_osciprime.la
|
|
|
|
endif
|
|
|
|
|
2011-01-08 02:32:25 +00:00
|
|
|
if LA_OLS
|
|
|
|
libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrokhwols.la
|
|
|
|
endif
|
|
|
|
|
2012-12-29 21:22:10 +00:00
|
|
|
if HW_RIGOL_DS1XX2
|
|
|
|
libsigrokhardware_la_LIBADD += rigol-ds1xx2/libsigrok_hw_rigol_ds1xx2.la
|
|
|
|
endif
|
|
|
|
|
2012-12-01 18:35:19 +00:00
|
|
|
if HW_SERIAL_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += serial-dmm/libsigrokhwserialdmm.la
|
2012-10-21 01:39:37 +00:00
|
|
|
endif
|
|
|
|
|
2012-11-09 02:33:05 +00:00
|
|
|
if HW_TONDAJ_SL_814
|
|
|
|
libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
|
|
|
|
endif
|
|
|
|
|
2012-10-27 20:41:50 +00:00
|
|
|
if HW_UNI_T_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += uni-t-dmm/libsigrok_hw_uni_t_dmm.la
|
|
|
|
endif
|
|
|
|
|
2012-11-02 19:47:06 +00:00
|
|
|
if HW_VICTOR_DMM
|
|
|
|
libsigrokhardware_la_LIBADD += victor-dmm/libsigrok_hw_victor_dmm.la
|
|
|
|
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
|
|
|
|
|