]> sigrok.org Git - libsigrok.git/blame - Makefile.am
Cosmetics, whitespace, simplifications.
[libsigrok.git] / Makefile.am
CommitLineData
62c82025 1##
a1bb33af 2## This file is part of the sigrok project.
62c82025 3##
a1bb33af 4## Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
62c82025 5##
a1bb33af
UH
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.
62c82025 10##
a1bb33af
UH
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.
62c82025 15##
a1bb33af
UH
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/>.
62c82025 18##
a1bb33af
UH
19
20AM_CPPFLAGS = -I $(top_srcdir)/libsigrok \
62c82025 21 -DFIRMWARE_DIR='"$(FIRMWARE_DIR)"'
a1bb33af 22
a695d6c0 23lib_LTLIBRARIES = libsigrok.la
a1bb33af 24
a695d6c0 25libsigrok_la_SOURCES = \
a1bb33af
UH
26 backend.c \
27 datastore.c \
28 device.c \
29 session.c \
30 hwplugin.c \
31 filter.c \
32 hardware/common/ezusb.c \
9a5c6dcf 33 hardware/common/misc.c \
a1bb33af 34 hardware/common/serial.c \
6239c175 35 hardware/demo/demo.c \
34e4813f
BV
36 input/input_binary.c \
37 input/input.c \
1c5b9d30 38 output/output_binary.c \
a1bb33af 39 output/output_text.c \
4c9ffa83 40 output/output_vcd.c \
e2ad47b5 41 output/output_gnuplot.c \
25e7d9b1 42 output/common.c \
a1bb33af
UH
43 output/output.c
44
5b907f9b
UH
45if LA_ASIX_SIGMA
46libsigrok_la_SOURCES += \
47 hardware/asix-sigma/asix-sigma.c \
48 hardware/asix-sigma/asix-sigma.h
49else
50EXTRA_DIST = \
51 hardware/asix-sigma/asix-sigma.c \
52 hardware/asix-sigma/asix-sigma.h
53endif
54
960a75e4
UH
55if LA_OLS
56libsigrok_la_SOURCES += hardware/openbench-logic-sniffer/ols.c
57else
58EXTRA_DIST = hardware/openbench-logic-sniffer/ols.c
59endif
60
61if LA_SALEAE_LOGIC
62libsigrok_la_SOURCES += hardware/saleae-logic/saleae-logic.c
63else
64EXTRA_DIST = hardware/saleae-logic/saleae-logic.c
65endif
66
67if LA_ZEROPLUS_LOGIC_CUBE
68libsigrok_la_SOURCES += \
69 hardware/zeroplus-logic-cube/analyzer.c \
70 hardware/zeroplus-logic-cube/analyzer.h \
71 hardware/zeroplus-logic-cube/gl_usb.c \
72 hardware/zeroplus-logic-cube/gl_usb.h \
73 hardware/zeroplus-logic-cube/zeroplus.c
74else
75EXTRA_DIST = \
76 hardware/zeroplus-logic-cube/analyzer.c \
77 hardware/zeroplus-logic-cube/analyzer.h \
78 hardware/zeroplus-logic-cube/gl_usb.c \
79 hardware/zeroplus-logic-cube/gl_usb.h \
80 hardware/zeroplus-logic-cube/zeroplus.c
81endif
82
a695d6c0 83libsigrok_la_LIBADD = $(LIBOBJS)
a1bb33af
UH
84
85include_HEADERS = sigrok.h
86
d658e348
UH
87pkgconfigdir = $(libdir)/pkgconfig
88pkgconfig_DATA = libsigrok.pc
89