50 lines
2.0 KiB
Plaintext
50 lines
2.0 KiB
Plaintext
# Copyright (C) 2015 Colin Walters <walters@verbum.org>
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
EXTRA_DIST += $(libglnx_srcpath)/README.md $(libglnx_srcpath)/COPYING
|
|
|
|
libglnx_la_SOURCES = \
|
|
$(libglnx_srcpath)/glnx-alloca.h \
|
|
$(libglnx_srcpath)/glnx-backport-autocleanups.h \
|
|
$(libglnx_srcpath)/glnx-backport-autoptr.h \
|
|
$(libglnx_srcpath)/glnx-backports.h \
|
|
$(libglnx_srcpath)/glnx-backports.c \
|
|
$(libglnx_srcpath)/glnx-local-alloc.h \
|
|
$(libglnx_srcpath)/glnx-local-alloc.c \
|
|
$(libglnx_srcpath)/glnx-errors.h \
|
|
$(libglnx_srcpath)/glnx-errors.c \
|
|
$(libglnx_srcpath)/glnx-console.h \
|
|
$(libglnx_srcpath)/glnx-console.c \
|
|
$(libglnx_srcpath)/glnx-dirfd.h \
|
|
$(libglnx_srcpath)/glnx-dirfd.c \
|
|
$(libglnx_srcpath)/glnx-fdio.h \
|
|
$(libglnx_srcpath)/glnx-fdio.c \
|
|
$(libglnx_srcpath)/glnx-lockfile.h \
|
|
$(libglnx_srcpath)/glnx-lockfile.c \
|
|
$(libglnx_srcpath)/glnx-libcontainer.h \
|
|
$(libglnx_srcpath)/glnx-libcontainer.c \
|
|
$(libglnx_srcpath)/glnx-xattrs.h \
|
|
$(libglnx_srcpath)/glnx-xattrs.c \
|
|
$(libglnx_srcpath)/glnx-shutil.h \
|
|
$(libglnx_srcpath)/glnx-shutil.c \
|
|
$(libglnx_srcpath)/libglnx.h \
|
|
$(NULL)
|
|
|
|
libglnx_la_CFLAGS = $(AM_CFLAGS) $(libglnx_cflags)
|
|
libglnx_la_LDFLAGS = -avoid-version -Bsymbolic-functions -export-symbols-regex "^glnx_" -no-undefined -export-dynamic
|
|
libglnx_la_LIBADD = $(libglnx_libs)
|