]> sigrok.org Git - libsigrok.git/blame_incremental - Makefile.am
udev rules file: Drop URLs and lsusb.
[libsigrok.git] / Makefile.am
... / ...
CommitLineData
1##
2## This file is part of the libsigrok project.
3##
4## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
6##
7## This program is free software: you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation, either version 3 of the License, or
10## (at your option) any later version.
11##
12## This program is distributed in the hope that it will be useful,
13## but WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
18## along with this program. If not, see <http://www.gnu.org/licenses/>.
19##
20
21ACLOCAL_AMFLAGS = -I autostuff
22
23AM_CPPFLAGS = -I$(top_srcdir)
24
25SUBDIRS = contrib hardware input output tests
26
27lib_LTLIBRARIES = libsigrok.la
28
29libsigrok_la_SOURCES = \
30 backend.c \
31 device.c \
32 session.c \
33 session_file.c \
34 session_driver.c \
35 hwdriver.c \
36 filter.c \
37 strutil.c \
38 log.c \
39 version.c \
40 error.c \
41 std.c
42
43libsigrok_la_LIBADD = \
44 $(LIBOBJS) \
45 hardware/libsigrokhardware.la \
46 input/libsigrokinput.la \
47 output/libsigrokoutput.la
48
49libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
50
51library_includedir = $(includedir)/libsigrok
52library_include_HEADERS = libsigrok.h proto.h version.h
53noinst_HEADERS = libsigrok-internal.h
54
55pkgconfigdir = $(libdir)/pkgconfig
56pkgconfig_DATA = libsigrok.pc
57
58EXTRA_DIST = Doxyfile README.devices
59
60MAINTAINERCLEANFILES = ChangeLog
61
62.PHONY: ChangeLog
63ChangeLog:
64 git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
65
66dist-hook: ChangeLog
67