]> sigrok.org Git - libsigrok.git/blame_incremental - Makefile.am
Code drop from DreamSourceLabs first source release.
[libsigrok.git] / Makefile.am
... / ...
CommitLineData
1##
2## This file is part of the libsigrok4DSLogic 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 = hardware input output tests
26
27lib_LTLIBRARIES = libsigrok4DSLogic.la
28
29libsigrok4DSLogic_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 trigger.c \
40 version.c \
41 error.c \
42 std.c
43
44libsigrok4DSLogic_la_LIBADD = \
45 $(LIBOBJS) \
46 hardware/libsigrok4DSLogichardware.la \
47 input/libsigrok4DSLogicinput.la \
48 output/libsigrok4DSLogicoutput.la
49
50libsigrok4DSLogic_la_LDFLAGS = $(SR_LIB_LDFLAGS)
51
52library_includedir = $(includedir)/libsigrok4DSLogic
53library_include_HEADERS = libsigrok.h proto.h version.h
54noinst_HEADERS = libsigrok-internal.h
55
56pkgconfigdir = $(libdir)/pkgconfig
57pkgconfig_DATA = libsigrok4DSLogic.pc
58
59EXTRA_DIST = Doxyfile README.devices
60
61MAINTAINERCLEANFILES = ChangeLog
62
63.PHONY: ChangeLog
64ChangeLog:
65 git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
66
67dist-hook: ChangeLog
68