]> sigrok.org Git - libsigrok.git/blob - Makefile.am
52c9f0e482b7ec276c201e88680eee5fe2cc3b8d
[libsigrok.git] / Makefile.am
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
21 ACLOCAL_AMFLAGS = -I autostuff
22
23 AM_CPPFLAGS = -I$(top_srcdir)
24
25 SUBDIRS = hardware input output tests
26
27 lib_LTLIBRARIES = libsigrok4DSLogic.la
28
29 libsigrok4DSLogic_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
44 libsigrok4DSLogic_la_LIBADD = \
45         $(LIBOBJS) \
46         hardware/libsigrok4DSLogichardware.la \
47         input/libsigrok4DSLogicinput.la \
48         output/libsigrok4DSLogicoutput.la
49
50 libsigrok4DSLogic_la_LDFLAGS = $(SR_LIB_LDFLAGS)
51
52 library_includedir = $(includedir)/libsigrok4DSLogic
53 library_include_HEADERS = libsigrok.h proto.h version.h
54 noinst_HEADERS = libsigrok-internal.h
55
56 pkgconfigdir = $(libdir)/pkgconfig
57 pkgconfig_DATA = libsigrok4DSLogic.pc
58
59 EXTRA_DIST = Doxyfile README.devices
60
61 MAINTAINERCLEANFILES = ChangeLog
62
63 .PHONY: ChangeLog
64 ChangeLog:
65         git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
66
67 dist-hook: ChangeLog
68