]> sigrok.org Git - libserialport.git/blob - Makefile.am
Compile with -pedantic.
[libserialport.git] / Makefile.am
1 ##
2 ## This file is part of the libserialport project.
3 ##
4 ## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5 ## Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
6 ##
7 ## This program is free software: you can redistribute it and/or modify
8 ## it under the terms of the GNU Lesser General Public License as
9 ## published by the Free Software Foundation, either version 3 of the
10 ## License, or (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 Lesser 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 lib_LTLIBRARIES = libserialport.la
26
27 libserialport_la_SOURCES = serialport.c libserialport_internal.h
28 if LINUX
29 libserialport_la_SOURCES += linux.c linux_termios.c linux_termios.h
30 endif
31 if WIN32
32 libserialport_la_SOURCES += windows.c
33 endif
34 if MACOSX
35 libserialport_la_SOURCES += macosx.c
36 endif
37
38 libserialport_la_LIBADD = $(LIBOBJS)
39
40 libserialport_la_LDFLAGS = $(SP_LIB_LDFLAGS)
41
42 library_includedir = $(includedir)
43 library_include_HEADERS = libserialport.h
44
45 pkgconfigdir = $(libdir)/pkgconfig
46 pkgconfig_DATA = libserialport.pc
47
48 EXTRA_DIST = Doxyfile
49
50 MAINTAINERCLEANFILES = ChangeLog
51
52 .PHONY: ChangeLog
53 ChangeLog:
54         git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
55
56 dist-hook: ChangeLog
57
58 doc: $(library_include_HEADERS) $(top_srcdir)/Doxyfile
59         doxygen $(top_srcdir)/Doxyfile