]> sigrok.org Git - libsigrok.git/blob - Makefile.am
Add initial README.devices file.
[libsigrok.git] / Makefile.am
1 ##
2 ## This file is part of the sigrok 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 = contrib hardware input output tests
26
27 lib_LTLIBRARIES = libsigrok.la
28
29 libsigrok_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
43 libsigrok_la_LIBADD = \
44         $(LIBOBJS) \
45         hardware/libsigrokhardware.la \
46         input/libsigrokinput.la \
47         output/libsigrokoutput.la
48
49 libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
50
51 library_includedir = $(includedir)/libsigrok
52 library_include_HEADERS = libsigrok.h proto.h version.h
53 noinst_HEADERS = libsigrok-internal.h
54
55 pkgconfigdir = $(libdir)/pkgconfig
56 pkgconfig_DATA = libsigrok.pc
57
58 EXTRA_DIST = Doxyfile README.devices
59
60 MAINTAINERCLEANFILES = ChangeLog
61
62 .PHONY: ChangeLog
63 ChangeLog:
64         git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
65
66 dist-hook: ChangeLog
67