2011-11-10 22:17:04 +04:00
# Copyright (C) 2011 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.
2011-10-18 20:27:37 +04:00
ACLOCAL_AMFLAGS = -I m4 ${ ACLOCAL_FLAGS }
2012-05-25 23:00:45 +04:00
AM_CPPFLAGS = -DDATADIR= '"$(datadir)"' -DLIBEXECDIR= '"$(libexecdir)"' \
2012-12-21 20:33:05 +04:00
-DGLIB_VERSION_MIN_REQUIRED= GLIB_VERSION_2_34 -DGLIB_VERSION_MAX_ALLOWED= GLIB_VERSION_2_34 \
-DSOUP_VERSION_MIN_REQUIRED= SOUP_VERSION_2_40 -DSOUP_VERSION_MAX_ALLOWED= SOUP_VERSION_40
2011-11-11 15:53:44 +04:00
AM_CFLAGS = $( WARN_CFLAGS)
2011-10-18 20:27:37 +04:00
2012-06-15 00:22:23 +04:00
i f B U I L D _ E M B E D D E D _ D E P E N D E N C I E S
2012-06-08 01:21:55 +04:00
SUBDIRS = embedded-dependencies .
e l s e
SUBDIRS = .
e n d i f
2011-10-10 01:03:08 +04:00
NULL =
BUILT_SOURCES =
2011-12-24 03:46:19 +04:00
MANPAGES =
2011-10-10 01:03:08 +04:00
CLEANFILES =
EXTRA_DIST =
2011-10-11 22:26:48 +04:00
bin_PROGRAMS =
2012-02-06 01:02:44 +04:00
sbin_PROGRAMS =
2011-10-10 01:03:08 +04:00
bin_SCRIPTS =
libexec_PROGRAMS =
noinst_LTLIBRARIES =
noinst_PROGRAMS =
2011-11-30 03:25:07 +04:00
privlibdir = $( pkglibdir)
privlib_LTLIBRARIES =
2011-10-10 01:03:08 +04:00
2012-09-26 02:44:08 +04:00
EXTRA_DIST += autogen.sh COPYING.GPL COPYING.LGPL README.md
2012-06-15 00:22:23 +04:00
i f B U I L D _ E M B E D D E D _ D E P E N D E N C I E S
2012-06-08 01:21:55 +04:00
OT_INTERNAL_GIO_UNIX_CFLAGS = \
2012-06-15 00:22:23 +04:00
-I$( top_builddir) /embedded-dependencies/EMBEDDEPS/include/glib-2.0 \
-I$( top_builddir) /embedded-dependencies/EMBEDDEPS/include/gio-unix-2.0 \
-I$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/glib-2.0/include \
2012-06-08 01:21:55 +04:00
$( NULL)
OT_INTERNAL_GIO_UNIX_LIBS = \
2012-06-15 00:22:23 +04:00
$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/libglib-2.0.so \
$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/libgthread-2.0.so \
$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/libgmodule-2.0.so \
$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/libgobject-2.0.so \
$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/libgio-2.0.so \
$( NULL)
OT_INTERNAL_SOUP_CFLAGS = \
$( OT_INTERNAL_GIO_UNIX_CFLAGS) \
-I$( top_builddir) /embedded-dependencies/EMBEDDEPS/include/libsoup-2.4 \
$( NULL)
OT_INTERNAL_SOUP_LIBS = \
$( OT_INTERNAL_GIO_UNIX_LIBS) \
$( top_builddir) /embedded-dependencies/EMBEDDEPS/lib/libsoup-2.4.so \
2012-06-08 01:21:55 +04:00
$( NULL)
e l s e
OT_INTERNAL_GIO_UNIX_CFLAGS = $( OT_DEP_GIO_UNIX_CFLAGS)
OT_INTERNAL_GIO_UNIX_LIBS = $( OT_DEP_GIO_UNIX_LIBS)
2012-06-15 00:22:23 +04:00
OT_INTERNAL_SOUP_CFLAGS = $( OT_DEP_SOUP_CFLAGS)
OT_INTERNAL_SOUP_LIBS = $( OT_DEP_SOUP_LIBS)
2012-06-08 01:21:55 +04:00
e n d i f
2012-07-15 19:51:57 +04:00
libgsystem_srcpath := src/libgsystem
2012-08-28 02:48:14 +04:00
libgsystem_cflags = $( OT_INTERNAL_GIO_UNIX_CFLAGS) -I$( srcdir) /src/libgsystem
2012-07-15 19:51:57 +04:00
libgsystem_libs = $( OT_INTERNAL_GIO_UNIX_LIBS)
2012-08-26 20:46:14 +04:00
i f ! T R I G G E R S _ O N L Y
2012-07-15 19:51:57 +04:00
i n c l u d e s r c / l i b g s y s t e m / M a k e f i l e - l i b g s y s t e m . a m
2012-11-30 03:16:45 +04:00
noinst_LTLIBRARIES += libgsystem.la
2012-08-26 20:46:14 +04:00
e n d i f
2011-11-21 05:55:24 +04:00
i n c l u d e M a k e f i l e - d a e m o n . a m
2011-11-02 23:45:32 +04:00
i n c l u d e M a k e f i l e - o t u t i l . a m
i n c l u d e M a k e f i l e - l i b o s t r e e . a m
i n c l u d e M a k e f i l e - o s t r e e . a m
2012-02-06 01:02:44 +04:00
i n c l u d e M a k e f i l e - s w i t c h r o o t . a m
2011-10-21 00:11:39 +04:00
i n c l u d e M a k e f i l e - t r i g g e r s . a m
2011-12-24 03:46:19 +04:00
# Docbook generation copied from systemd/Makefile.am
#
# Copyright 2010 Lennart Poettering
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# systemd 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
XML_FILES = \
${ patsubst %.1,%.xml, ${ patsubst %.3,%.xml, ${ patsubst %.5,%.xml, ${ patsubst %.7,%.xml, ${ patsubst %.8,%.xml, $( MANPAGES) } } } } }
EXTRA_DIST += $( XML_FILES)
2012-01-14 01:30:39 +04:00
i f B U I L D _ D O C U M E N T A T I O N
2011-12-24 03:46:19 +04:00
dist_man_MANS = $( MANPAGES)
XSLTPROC_FLAGS = \
--nonet \
--param funcsynopsis.style "'ansi'"
XSLTPROC_PROCESS_MAN = \
$( AM_V_GEN) $( MKDIR_P) $( dir $@ ) && \
$( XSLTPROC) -o $@ $( XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
doc/%.1 : doc /%.xml
$( XSLTPROC_PROCESS_MAN)
e n d i f
2012-03-31 20:34:11 +04:00
release-tag :
git tag -m " Release $( VERSION) " v$( VERSION)
2012-06-08 01:21:55 +04:00
2012-08-18 04:51:36 +04:00
embed_dependency = tar -C $( srcdir) --append --exclude= '.git/*' --transform= " s,^embedded-dependencies/,ostree-embeddeps- $$ {GITVERSION}/embedded-dependencies/, " --file= $$ { TARFILE_TMP}
git_version_rpm = $$ ( git describe | sed -e 's,-,\.,g' -e 's,^v,,' )
2012-06-15 00:22:23 +04:00
2012-06-08 01:21:55 +04:00
release-tarball-embedded :
2012-08-18 04:51:36 +04:00
set -x; \
GITVERSION = $( git_version_rpm) ; export GITVERSION; \
TARFILE_TMP = ostree-embeddeps-$$ { GITVERSION} .tar.tmp; \
REV = $$ ( git rev-parse HEAD) ; \
echo " Archiving ostree at $$ {REV} " ; \
( cd $( srcdir) ; git archive --format= tar --prefix= ostree-embeddeps-$$ { GITVERSION} / $$ { REV} ) > $$ { TARFILE_TMP} ; \
( cd $$ ( git rev-parse --show-toplevel) ; git submodule status) | while read line; do \
rev = $$ ( echo $$ line | cut -f 1 -d ' ' ) ; path = $$ ( echo $$ line | cut -f 2 -d ' ' ) ; \
echo " Archiving $$ {path} at $$ {rev} " ; \
( cd $( srcdir) /$$ path; git archive --format= tar --prefix= ostree-embeddeps-$$ { GITVERSION} /$$ path/ $$ { rev} ) > submodule.tar; \
tar -A -f $$ { TARFILE_TMP} submodule.tar; \
rm submodule.tar; \
done ; \
echo "Archiving glib" ; \
$( embed_dependency) embedded-dependencies/glib; \
echo "Archiving libsoup" ; \
$( embed_dependency) embedded-dependencies/libsoup; \
mv ostree-embeddeps-$$ { GITVERSION} .tar{ .tmp,} ; \
gzip -f ostree-embeddeps-$$ { GITVERSION} .tar
2012-09-21 02:00:04 +04:00
srpm :
2012-08-18 04:51:36 +04:00
GITVERSION = $( git_version_rpm) ; export GITVERSION; \
2012-09-21 02:00:04 +04:00
$( srcdir) /packages/substitute-gitversion.sh $( srcdir) /packages/ostree.spec.in > ostree.spec
2012-08-18 04:51:36 +04:00
$( srcdir) /packages/rpmbuild-cwd -bs ostree.spec
2012-08-28 18:14:11 +04:00
dist-snapshot :
set -x; \
GITVERSION = $( git_version_rpm) ; export GITVERSION; \
TARFILE_TMP = ostree-$$ { GITVERSION} .tar.tmp; \
REV = $$ ( git rev-parse HEAD) ; \
echo " Archiving ostree at $$ {REV} " ; \
( cd $( srcdir) ; git archive --format= tar --prefix= ostree-$$ { GITVERSION} / $$ { REV} ) > $$ { TARFILE_TMP} ; \
( cd $$ ( git rev-parse --show-toplevel) ; git submodule status) | while read line; do \
rev = $$ ( echo $$ line | cut -f 1 -d ' ' ) ; path = $$ ( echo $$ line | cut -f 2 -d ' ' ) ; \
echo " Archiving $$ {path} at $$ {rev} " ; \
( cd $( srcdir) /$$ path; git archive --format= tar --prefix= ostree-$$ { GITVERSION} /$$ path/ $$ { rev} ) > submodule.tar; \
tar -A -f $$ { TARFILE_TMP} submodule.tar; \
rm submodule.tar; \
done ; \
mv ostree-$$ { GITVERSION} .tar{ .tmp,} ; \
gzip -f ostree-$$ { GITVERSION} .tar