libsigrok/hardware/Makefile.am

136 lines
3.2 KiB
Makefile
Raw Normal View History

##
2013-04-23 20:24:30 +00:00
## This file is part of the libsigrok project.
##
## Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
##
## 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 = \
agilent-dmm \
alsa \
asix-sigma \
2012-11-22 03:20:39 +00:00
brymen-dmm \
chronovu-la8 \
2012-10-29 21:33:47 +00:00
colead-slm \
common \
demo \
2012-09-10 20:31:29 +00:00
fluke-dmm \
fx2lafw \
2012-10-20 23:34:34 +00:00
hantek-dso \
lascar-el-usb \
link-mso19 \
2013-01-30 15:58:01 +00:00
mic-985xx \
nexus-osciprime \
openbench-logic-sniffer \
2012-12-29 21:22:10 +00:00
rigol-ds1xx2 \
serial-dmm \
tondaj-sl-814 \
uni-t-dmm \
2012-11-02 19:47:06 +00:00
victor-dmm \
2012-10-20 23:34:34 +00:00
zeroplus-logic-cube
noinst_LTLIBRARIES = libsigrokhardware.la
libsigrokhardware_la_SOURCES =
libsigrokhardware_la_LIBADD = \
common/libsigrok_hw_common.la
2011-01-11 21:17:33 +00:00
if HW_AGILENT_DMM
libsigrokhardware_la_LIBADD += agilent-dmm/libsigrok_hw_agilent_dmm.la
endif
if HW_ALSA
libsigrokhardware_la_LIBADD += alsa/libsigrok_hw_alsa.la
endif
if HW_ASIX_SIGMA
libsigrokhardware_la_LIBADD += asix-sigma/libsigrok_hw_asix_sigma.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
if HW_CHRONOVU_LA8
libsigrokhardware_la_LIBADD += chronovu-la8/libsigrok_hw_chronovu_la8.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
if HW_DEMO
libsigrokhardware_la_LIBADD += demo/libsigrok_hw_demo.la
2012-07-01 20:37:15 +00:00
endif
2012-09-10 20:31:29 +00:00
if HW_FLUKE_DMM
libsigrokhardware_la_LIBADD += fluke-dmm/libsigrok_hw_fluke_dmm.la
2012-09-10 20:31:29 +00:00
endif
if HW_FX2LAFW
libsigrokhardware_la_LIBADD += fx2lafw/libsigrok_hw_fx2lafw.la
endif
2012-10-20 23:34:34 +00:00
if HW_HANTEK_DSO
libsigrokhardware_la_LIBADD += hantek-dso/libsigrok_hw_hantek_dso.la
2012-10-20 23:34:34 +00:00
endif
if HW_LASCAR_EL_USB
libsigrokhardware_la_LIBADD += lascar-el-usb/libsigrok_hw_lascar_el_usb.la
endif
if HW_LINK_MSO19
libsigrokhardware_la_LIBADD += link-mso19/libsigrok_hw_link_mso_19.la
endif
2013-01-30 15:58:01 +00:00
if HW_MIC_985XX
libsigrokhardware_la_LIBADD += mic-985xx/libsigrok_hw_mic_985xx.la
endif
if HW_NEXUS_OSCIPRIME
libsigrokhardware_la_LIBADD += nexus-osciprime/libsigrok_hw_nexus_osciprime.la
endif
if HW_OLS
libsigrokhardware_la_LIBADD += openbench-logic-sniffer/libsigrok_hw_ols.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
if HW_SERIAL_DMM
libsigrokhardware_la_LIBADD += serial-dmm/libsigrok_hw_serial_dmm.la
endif
if HW_TONDAJ_SL_814
libsigrokhardware_la_LIBADD += tondaj-sl-814/libsigrok_hw_tondaj_sl_814.la
endif
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
if HW_ZEROPLUS_LOGIC_CUBE
libsigrokhardware_la_LIBADD += zeroplus-logic-cube/libsigrok_hw_zeroplus.la
endif