]> sigrok.org Git - libserialport.git/blob - Makefile.am
change type of result variables to ssize_t
[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 AM_LIBTOOLFLAGS = --silent
23 GNUMAKEFLAGS = --no-print-directory
24
25 # Enable more compiler warnings.
26 AM_CFLAGS = -std=c99 -Wall -Wextra -pedantic -Wmissing-prototypes -Wshadow
27 # Set flag used in libserialport.h to indicate we are building the library
28 # using autotools.
29 AM_CFLAGS += -DLIBSERIALPORT_ATBUILD
30
31 lib_LTLIBRARIES = libserialport.la
32
33 libserialport_la_SOURCES = serialport.c timing.c libserialport_internal.h
34 if LINUX
35 libserialport_la_SOURCES += linux.c linux_termios.c linux_termios.h
36 endif
37 if WIN32
38 libserialport_la_SOURCES += windows.c
39 endif
40 if MACOSX
41 libserialport_la_SOURCES += macosx.c
42 endif
43 if FREEBSD
44 libserialport_la_SOURCES += freebsd.c
45 endif
46
47 libserialport_la_LIBADD = $(SP_LIBS)
48
49 libserialport_la_LDFLAGS = -version-info $(SP_LIB_VERSION) -no-undefined
50 if MACOSX
51 libserialport_la_LDFLAGS += -framework IOKit -framework CoreFoundation
52 endif
53
54 nodist_include_HEADERS = libserialport.h
55
56 pkgconfigdir = $(libdir)/pkgconfig
57 pkgconfig_DATA = libserialport.pc
58
59 TESTS = test_timing
60 check_PROGRAMS = test_timing
61 test_timing_SOURCES = timing.c test_timing.c
62 test_timing_CFLAGS = $(AM_CFLAGS)
63
64 EXTRA_DIST = Doxyfile \
65         examples/Makefile \
66         examples/README \
67         examples/list_ports.c \
68         examples/port_info.c \
69         examples/port_config.c \
70         examples/await_events.c \
71         examples/handle_errors.c
72
73 MAINTAINERCLEANFILES = ChangeLog
74
75 .PHONY: ChangeLog doc
76
77 ChangeLog:
78         git --git-dir '$(top_srcdir)/.git' log >$@ || touch $@
79
80 dist-hook: ChangeLog
81
82 doc: $(nodist_include_HEADERS) $(top_srcdir)/Doxyfile
83         doxygen $(top_srcdir)/Doxyfile