Fix possible use of uninitialised variable in poll() setup.
[libserialport/gsi.git] / Makefile.am
blob8c0276c7e5bb4f5fc64798a920000ab3bf49f730
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.
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.
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/>.
21 ACLOCAL_AMFLAGS = -I autostuff
23 AM_CPPFLAGS = -I$(top_srcdir)
25 # Enable more compiler warnings.
26 AM_CFLAGS = -std=c99 -Wall -Wextra -pedantic -Wmissing-prototypes -Wshadow
28 lib_LTLIBRARIES = libserialport.la
30 libserialport_la_SOURCES = serialport.c libserialport_internal.h
31 if LINUX
32 libserialport_la_SOURCES += linux.c linux_termios.c linux_termios.h
33 endif
34 if WIN32
35 libserialport_la_SOURCES += windows.c
36 endif
37 if MACOSX
38 libserialport_la_SOURCES += macosx.c
39 endif
40 if FREEBSD
41 libserialport_la_SOURCES += freebsd.c
42 endif
44 libserialport_la_LIBADD = $(LIBOBJS)
45 if WIN32
46 libserialport_la_LIBADD += $(SP_LIBS)
47 endif
49 libserialport_la_LDFLAGS = $(SP_LIB_LDFLAGS) -no-undefined
50 if MACOSX
51 libserialport_la_LDFLAGS += -framework IOKit -framework CoreFoundation
52 endif
54 library_includedir = $(includedir)
55 library_include_HEADERS = libserialport.h
57 pkgconfigdir = $(libdir)/pkgconfig
58 pkgconfig_DATA = libserialport.pc
60 EXTRA_DIST = Doxyfile
62 MAINTAINERCLEANFILES = ChangeLog
64 .PHONY: ChangeLog
65 ChangeLog:
66         git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
68 dist-hook: ChangeLog
70 doc: $(library_include_HEADERS) $(top_srcdir)/Doxyfile
71         doxygen $(top_srcdir)/Doxyfile