2012-08-28 03:06:39 +00:00
# WARN: gmake syntax
2012-04-21 16:01:15 +00:00
########################################################
# Makefile for Ansible
#
# useful targets:
# make sdist ---------------- produce a tarball
2014-06-20 20:04:10 +00:00
# make srpm ----------------- produce a SRPM
2012-04-21 16:01:15 +00:00
# make rpm ----------------- produce RPMs
2014-06-20 20:04:10 +00:00
# make deb-src -------------- produce a DEB source
2012-07-24 19:38:52 +00:00
# make deb ------------------ produce a DEB
2012-04-21 16:01:15 +00:00
# make docs ----------------- rebuild the manpages (results are checked in)
2017-04-28 08:08:26 +00:00
# make tests ---------------- run the tests (see https://docs.ansible.com/ansible/dev_guide/testing_units.html for requirements)
2012-10-03 13:43:38 +00:00
# make pyflakes, make pep8 -- source code checks
2012-04-21 16:01:15 +00:00
########################################################
# variable section
2014-05-08 18:46:56 +00:00
NAME = ansible
2012-08-28 03:06:39 +00:00
OS = $( shell uname -s)
2018-02-06 03:54:10 +00:00
PREFIX ?= '/usr/local'
2012-04-21 16:01:15 +00:00
2012-04-17 14:39:36 +00:00
# This doesn't evaluate until it's called. The -D argument is the
# directory of the target file ($@), kinda like `dirname`.
2017-03-30 17:13:05 +00:00
MANPAGES ?= $( patsubst %.asciidoc.in,%,$( wildcard ./docs/man/man1/ansible*.1.asciidoc.in) )
2013-03-05 18:59:39 +00:00
i f n e q ( $( shell which a 2x 2>/dev /null ) , )
2016-07-29 20:02:02 +00:00
ASCII2MAN = a2x -L -D $( dir $@ ) -d manpage -f manpage $<
ASCII2HTMLMAN = a2x -L -D docs/html/man/ -d manpage -f xhtml
2013-03-05 18:59:39 +00:00
e l s e
ASCII2MAN = @echo " ERROR: AsciiDoc 'a2x' command is not installed but is required to build $( MANPAGES) " && exit 1
e n d i f
2017-09-07 19:44:20 +00:00
GENERATE_CLI = docs/bin/generate_man.py
2012-04-21 16:01:15 +00:00
2013-03-02 14:38:02 +00:00
PYTHON = python
SITELIB = $( shell $( PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" )
2012-04-21 16:01:15 +00:00
2018-03-09 06:56:36 +00:00
# fetch version from project release.py as single source-of-truth
VERSION := $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --raw || echo error)
i f e q ( $( findstring error ,$ ( VERSION ) ) , e r r o r )
$( error "version_helper failed ")
e n d i f
# if a specific release was not requested, set to 0 (RPMs have "fancier" logic for this further down)
RELEASE ?= 1
2012-04-21 16:01:15 +00:00
2012-11-12 13:21:08 +00:00
# Get the branch information from git
2012-08-01 12:52:37 +00:00
i f n e q ( $( shell which git ) , )
GIT_DATE := $( shell git log -n 1 --format= "%ai" )
2014-08-06 11:00:14 +00:00
GIT_HASH := $( shell git log -n 1 --format= "%h" )
2015-09-30 13:32:09 +00:00
GIT_BRANCH := $( shell git rev-parse --abbrev-ref HEAD | sed 's/[-_.\/]//g' )
2014-08-06 11:00:14 +00:00
GITINFO = .$( GIT_HASH) .$( GIT_BRANCH)
e l s e
2015-12-11 02:50:11 +00:00
GITINFO = ""
2012-08-01 12:52:37 +00:00
e n d i f
2012-08-28 03:06:39 +00:00
2016-12-22 22:27:28 +00:00
i f e q ( $( shell echo $ ( OS ) | egrep -c 'Darwin |FreeBSD |OpenBSD |DragonFly ') , 1 )
2013-09-15 19:27:18 +00:00
DATE := $( shell date -j -r $( shell git log -n 1 --format= "%at" ) +%Y%m%d%H%M)
2017-01-20 04:09:55 +00:00
CPUS ?= $( shell sysctl hw.ncpu| awk '{print $$2}' )
2012-09-19 09:56:55 +00:00
e l s e
2012-10-02 12:29:57 +00:00
DATE := $( shell date --utc --date= " $( GIT_DATE) " +%Y%m%d%H%M)
2017-01-20 04:09:55 +00:00
CPUS ?= $( shell nproc)
2012-08-28 03:06:39 +00:00
e n d i f
2012-08-01 12:52:37 +00:00
2014-06-20 20:04:10 +00:00
# DEB build parameters
DEBUILD_BIN ?= debuild
DEBUILD_OPTS = --source-option= "-I"
DPUT_BIN ?= dput
2014-06-20 23:58:52 +00:00
DPUT_OPTS ?=
2015-11-02 17:30:36 +00:00
DEB_DATE := $( shell LC_TIME = C date +"%a, %d %b %Y %T %z" )
2018-03-09 06:56:36 +00:00
DEB_VERSION := $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --debversion)
2014-06-20 20:04:10 +00:00
i f e q ( $( OFFICIAL ) , y e s )
2018-03-09 06:56:36 +00:00
DEB_RELEASE := $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --debrelease) ppa
2014-06-20 20:04:10 +00:00
# Sign OFFICIAL builds using 'DEBSIGN_KEYID'
# DEBSIGN_KEYID is required when signing
ifneq ( $( DEBSIGN_KEYID) ,)
DEBUILD_OPTS += -k$( DEBSIGN_KEYID)
endif
e l s e
2016-08-12 00:36:03 +00:00
DEB_RELEASE = 100.git$( DATE) $( GITINFO)
2014-06-20 20:04:10 +00:00
# Do not sign unofficial builds
DEBUILD_OPTS += -uc -us
DPUT_OPTS += -u
e n d i f
DEBUILD = $( DEBUILD_BIN) $( DEBUILD_OPTS)
DEB_PPA ?= ppa
# Choose the desired Ubuntu release: lucid precise saucy trusty
DEB_DIST ?= unstable
2016-10-26 21:24:15 +00:00
# pbuilder parameters
PBUILDER_ARCH ?= amd64
PBUILDER_CACHE_DIR = /var/cache/pbuilder
PBUILDER_BIN ?= pbuilder
PBUILDER_OPTS ?= --debootstrapopts --variant= buildd --architecture $( PBUILDER_ARCH) --debbuildopts -b
2012-04-21 16:01:15 +00:00
# RPM build parameters
2012-04-18 15:00:59 +00:00
RPMSPECDIR = packaging/rpm
RPMSPEC = $( RPMSPECDIR) /ansible.spec
2013-06-02 17:27:04 +00:00
RPMDIST = $( shell rpm --eval '%{?dist}' )
2018-03-09 06:56:36 +00:00
2014-05-08 18:57:14 +00:00
i f n e q ( $( OFFICIAL ) , y e s )
2016-08-12 00:36:03 +00:00
RPMRELEASE = 100.git$( DATE) $( GITINFO)
2012-08-01 12:52:37 +00:00
e n d i f
2017-08-03 19:35:37 +00:00
i f e q ( $( PUBLISH ) , n i g h t l y )
# https://fedoraproject.org/wiki/Packaging:Versioning#Snapshots
RPMRELEASE = $( RELEASE) .$( DATE) git.$( GIT_HASH)
e n d i f
2018-03-09 06:56:36 +00:00
RPMVERSION ?= $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --baseversion)
RPMRELEASE ?= $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --rpmrelease)
2018-03-10 01:52:54 +00:00
RPMNVR = " $( NAME) - $( RPMVERSION) - $( RPMRELEASE) $( RPMDIST) $( REPOTAG) "
2012-02-25 01:05:05 +00:00
2014-05-08 18:46:56 +00:00
# MOCK build parameters
MOCK_BIN ?= mock
MOCK_CFG ?=
2018-04-04 20:55:02 +00:00
# dynamically add repotag define only if specified
i f n e q ( $( REPOTAG ) , )
EXTRA_RPM_DEFINES += --define " repotag $( REPOTAG) "
e n d i f
2017-01-11 20:03:26 +00:00
# ansible-test parameters
ANSIBLE_TEST ?= test/runner/ansible-test
TEST_FLAGS ?=
2013-05-11 10:13:29 +00:00
2017-01-11 20:03:26 +00:00
# ansible-test units parameters (make test / make test-py3)
PYTHON_VERSION ?= $( shell python2 -c 'import sys; print("%s.%s" % sys.version_info[:2])' )
PYTHON3_VERSION ?= $( shell python3 -c 'import sys; print("%s.%s" % sys.version_info[:2])' )
# ansible-test integration parameters (make integration)
IMAGE ?= centos7
TARGET ?=
2014-10-12 22:54:01 +00:00
2012-04-21 16:01:15 +00:00
########################################################
2017-08-10 21:35:58 +00:00
.PHONY : all
2012-02-28 09:15:52 +00:00
all : clean python
2017-08-10 21:35:58 +00:00
.PHONY : tests
2012-10-03 13:43:38 +00:00
tests :
2017-01-11 20:03:26 +00:00
$( ANSIBLE_TEST) units -v --python $( PYTHON_VERSION) $( TEST_FLAGS)
2014-10-02 17:41:52 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : tests -py 3
2015-10-02 18:11:48 +00:00
tests-py3 :
2017-01-11 20:03:26 +00:00
$( ANSIBLE_TEST) units -v --python $( PYTHON3_VERSION) $( TEST_FLAGS)
2012-03-04 02:56:11 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : tests -nonet
2017-05-23 21:16:49 +00:00
tests-nonet :
$( ANSIBLE_TEST) units -v --python $( PYTHON_VERSION) $( TEST_FLAGS) --exclude test/units/modules/network/
2017-08-10 21:35:58 +00:00
.PHONY : integration
2016-09-22 20:31:43 +00:00
integration :
2017-01-11 20:03:26 +00:00
$( ANSIBLE_TEST) integration -v --docker $( IMAGE) $( TARGET) $( TEST_FLAGS)
2016-09-22 20:31:43 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : authors
2013-02-27 03:05:17 +00:00
authors :
sh hacking/authors.sh
2012-02-25 01:05:05 +00:00
2012-04-16 19:43:21 +00:00
# Regenerate %.1.asciidoc if %.1.asciidoc.in has been modified more
# recently than %.1.asciidoc.
%.1.asciidoc : %.1.asciidoc .in
2012-04-17 14:39:36 +00:00
sed " s/%VERSION%/ $( VERSION) / " $< > $@
2012-02-25 01:05:05 +00:00
2018-03-09 22:39:32 +00:00
# Regenerate %.1 if %.1.asciidoc or release.py has been modified more
2012-04-17 14:39:36 +00:00
# recently than %.1. (Implicitly runs the %.1.asciidoc recipe)
2018-03-09 22:38:21 +00:00
%.1 : %.1.asciidoc lib /ansible /release .py
2012-02-25 01:05:05 +00:00
$( ASCII2MAN)
2017-08-10 21:35:58 +00:00
.PHONY : loc
2012-03-03 03:03:03 +00:00
loc :
sloccount lib library bin
2017-08-10 21:35:58 +00:00
.PHONY : pep 8
2012-02-25 01:05:05 +00:00
pep8 :
2017-02-09 17:56:38 +00:00
$( ANSIBLE_TEST) sanity --test pep8 --python $( PYTHON_VERSION) $( TEST_FLAGS)
2012-02-25 01:05:05 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : pyflakes
2012-03-03 03:10:51 +00:00
pyflakes :
2013-11-02 15:07:58 +00:00
pyflakes lib/ansible/*.py lib/ansible/*/*.py bin/*
2012-03-03 03:10:51 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : clean
2012-02-25 01:05:05 +00:00
clean :
2012-03-05 19:06:39 +00:00
@echo "Cleaning up distutils stuff"
2012-04-17 14:39:36 +00:00
rm -rf build
rm -rf dist
2015-08-16 13:33:20 +00:00
rm -rf lib/ansible.egg-info/
2012-03-05 19:06:39 +00:00
@echo "Cleaning up byte compiled python stuff"
2012-04-17 14:39:36 +00:00
find . -type f -regex " .*\.py[co] $$ " -delete
2017-03-12 16:30:24 +00:00
find . -type d -name "__pycache__" -delete
2012-03-05 19:06:39 +00:00
@echo "Cleaning up editor backup files"
2015-10-26 14:16:21 +00:00
find . -type f -not -path ./test/units/inventory_test_data/group_vars/noparse/all.yml~ \( -name "*~" -or -name "#*" \) -delete
2012-03-06 03:47:30 +00:00
find . -type f \( -name "*.swp" \) -delete
2012-10-08 16:25:09 +00:00
@echo "Cleaning up manpage stuff"
2012-03-31 15:08:42 +00:00
find ./docs/man -type f -name "*.xml" -delete
2012-04-16 19:43:21 +00:00
find ./docs/man -type f -name "*.asciidoc" -delete
2012-10-08 16:25:09 +00:00
find ./docs/man/man3 -type f -name "*.3" -delete
2017-03-23 05:11:40 +00:00
rm -f ./docs/man/man1/*
2012-03-06 03:44:39 +00:00
@echo "Cleaning up output from test runs"
2012-04-17 14:39:36 +00:00
rm -rf test/test_data
2017-06-23 16:44:03 +00:00
rm -rf shippable/
rm -rf logs/
rm -rf .cache/
rm -f test/units/.coverage*
2017-09-18 17:40:23 +00:00
rm -rf test/results/*/*
2017-06-23 16:44:03 +00:00
find test/ -type f -name '*.retry' -delete
2012-03-10 19:02:25 +00:00
@echo "Cleaning up RPM building stuff"
2012-04-17 14:39:36 +00:00
rm -rf MANIFEST rpm-build
2012-04-23 23:17:01 +00:00
@echo "Cleaning up Debian building stuff"
rm -rf debian
rm -rf deb-build
2012-10-09 20:04:55 +00:00
rm -rf docs/json
rm -rf docs/js
2013-03-26 07:19:45 +00:00
@echo "Cleaning up authors file"
rm -f AUTHORS.TXT
2017-01-06 22:07:28 +00:00
@echo "Cleaning up docsite"
$( MAKE) -C docs/docsite clean
2017-01-13 19:12:51 +00:00
$( MAKE) -C docs/api clean
2012-02-25 01:05:05 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : python
2012-03-16 00:21:10 +00:00
python :
2013-03-02 14:38:02 +00:00
$( PYTHON) setup.py build
2012-02-28 09:15:52 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : install
2012-03-16 00:21:10 +00:00
install :
2013-03-02 14:38:02 +00:00
$( PYTHON) setup.py install
2012-02-28 09:15:52 +00:00
2018-02-06 03:54:10 +00:00
install_manpages :
gzip -9 $( wildcard ./docs/man/man1/ansible*.1)
cp $( wildcard ./docs/man/man1/ansible*.1.gz) $( PREFIX) /man/man1/
2017-08-10 21:35:58 +00:00
.PHONY : sdist
2018-03-09 23:31:54 +00:00
sdist : clean docs changelog_aggregate
2014-04-30 01:01:51 +00:00
$( PYTHON) setup.py sdist
2012-03-10 19:02:25 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : sdist_upload
2016-01-13 15:17:43 +00:00
sdist_upload : clean docs
$( PYTHON) setup.py sdist upload 2>& 1 | tee upload.log
2018-02-16 09:13:00 +00:00
# TODO: variable-ize major version number usages here
.PHONY : changelog_reno
changelog_reno :
2018-03-23 00:09:19 +00:00
reno -d changelogs/ report --title 'Ansible 2.5 "Kashmir" Release Notes' --collapse-pre-release --no-show-source --earliest-version v2.5.0b1 --output changelogs/CHANGELOG-v2.5.rst
2018-02-16 09:13:00 +00:00
2018-03-09 23:31:54 +00:00
.PHONY : changelog_aggregate
2018-03-09 06:56:36 +00:00
changelog_aggregate :
echo "TODO: unified changelog" > changelogs/CHANGELOG.rst
2017-08-10 21:35:58 +00:00
.PHONY : rpmcommon
2017-04-09 20:20:12 +00:00
rpmcommon : sdist
2012-03-10 19:02:25 +00:00
@mkdir -p rpm-build
@cp dist/*.gz rpm-build/
2018-03-09 06:56:36 +00:00
@cp $( RPMSPEC) rpm-build/$( NAME) .spec
2012-03-10 19:02:25 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : mock -srpm
2014-05-08 18:46:56 +00:00
mock-srpm : /etc /mock /$( MOCK_CFG ) .cfg rpmcommon
2018-03-09 06:56:36 +00:00
$( MOCK_BIN) -r $( MOCK_CFG) $( MOCK_ARGS) --resultdir rpm-build/ --bootstrap-chroot --old-chroot --buildsrpm --spec rpm-build/$( NAME) .spec --sources rpm-build/ \
--define " rpmversion $( RPMVERSION) " \
--define " upstream_version $( VERSION) " \
2018-03-10 01:52:54 +00:00
--define " rpmrelease $( RPMRELEASE) " \
2018-04-04 20:55:02 +00:00
$( EXTRA_RPM_DEFINES)
2014-05-08 18:46:56 +00:00
@echo "#############################################"
@echo "Ansible SRPM is built:"
@echo rpm-build/*.src.rpm
@echo "#############################################"
2017-08-10 21:35:58 +00:00
.PHONY : mock -rpm
2014-05-09 13:01:27 +00:00
mock-rpm : /etc /mock /$( MOCK_CFG ) .cfg mock -srpm
2018-03-09 06:56:36 +00:00
$( MOCK_BIN) -r $( MOCK_CFG) $( MOCK_ARGS) --resultdir rpm-build/ --bootstrap-chroot --old-chroot --rebuild rpm-build/$( NAME) -*.src.rpm \
--define " rpmversion $( RPMVERSION) " \
--define " upstream_version $( VERSION) " \
2018-03-10 01:52:54 +00:00
--define " rpmrelease $( RPMRELEASE) " \
2018-04-04 20:55:02 +00:00
$( EXTRA_RPM_DEFINES)
2014-05-08 18:46:56 +00:00
@echo "#############################################"
@echo "Ansible RPM is built:"
@echo rpm-build/*.noarch.rpm
@echo "#############################################"
2017-08-10 21:35:58 +00:00
.PHONY : srpm
2012-03-10 19:02:25 +00:00
srpm : rpmcommon
@rpmbuild --define "_topdir %(pwd)/rpm-build" \
--define "_builddir %{_topdir}" \
--define "_rpmdir %{_topdir}" \
--define "_srcrpmdir %{_topdir}" \
2012-04-18 15:00:59 +00:00
--define " _specdir $( RPMSPECDIR) " \
2012-03-10 19:02:25 +00:00
--define "_sourcedir %{_topdir}" \
2018-03-09 06:56:36 +00:00
--define " upstream_version $( VERSION) " \
--define " rpmversion $( RPMVERSION) " \
--define " rpmrelease $( RPMRELEASE) " \
2018-04-04 20:55:02 +00:00
$( EXTRA_RPM_DEFINES) \
2012-08-01 12:52:37 +00:00
-bs rpm-build/$( NAME) .spec
@rm -f rpm-build/$( NAME) .spec
2012-03-10 19:02:25 +00:00
@echo "#############################################"
@echo "Ansible SRPM is built:"
@echo " rpm-build/ $( RPMNVR) .src.rpm "
@echo "#############################################"
2017-08-10 21:35:58 +00:00
.PHONY : rpm
2012-03-10 19:02:25 +00:00
rpm : rpmcommon
@rpmbuild --define "_topdir %(pwd)/rpm-build" \
--define "_builddir %{_topdir}" \
--define "_rpmdir %{_topdir}" \
--define "_srcrpmdir %{_topdir}" \
2012-04-18 15:00:59 +00:00
--define " _specdir $( RPMSPECDIR) " \
2012-03-10 19:02:25 +00:00
--define "_sourcedir %{_topdir}" \
2018-03-09 06:56:36 +00:00
--define " _rpmfilename $( RPMNVR) .%%{ARCH}.rpm " \
2013-03-11 15:22:37 +00:00
--define " __python `which $( PYTHON) ` " \
2018-03-09 06:56:36 +00:00
--define " upstream_version $( VERSION) " \
--define " rpmversion $( RPMVERSION) " \
--define " rpmrelease $( RPMRELEASE) " \
2018-04-04 20:55:02 +00:00
$( EXTRA_RPM_DEFINES) \
2012-08-01 12:52:37 +00:00
-ba rpm-build/$( NAME) .spec
@rm -f rpm-build/$( NAME) .spec
2012-03-10 19:02:25 +00:00
@echo "#############################################"
@echo "Ansible RPM is built:"
2012-08-01 13:25:19 +00:00
@echo " rpm-build/ $( RPMNVR) .noarch.rpm "
2012-03-10 19:02:25 +00:00
@echo "#############################################"
2012-04-21 15:56:06 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : debian
2012-04-23 23:17:01 +00:00
debian : sdist
2014-06-20 20:04:10 +00:00
@for DIST in $( DEB_DIST) ; do \
mkdir -p deb-build/$$ { DIST} ; \
tar -C deb-build/$$ { DIST} -xvf dist/$( NAME) -$( VERSION) .tar.gz ; \
cp -a packaging/debian deb-build/$$ { DIST} /$( NAME) -$( VERSION) / ; \
2018-03-09 06:56:36 +00:00
sed -ie " s|%VERSION%| $( DEB_VERSION) |g;s|%RELEASE%| $( DEB_RELEASE) |;s|%DIST%| $$ {DIST}|g;s|%DATE%| $( DEB_DATE) |g " deb-build/$$ { DIST} /$( NAME) -$( VERSION) /debian/changelog ; \
2014-06-20 20:04:10 +00:00
done
2017-08-10 21:35:58 +00:00
.PHONY : deb
2016-10-26 21:24:15 +00:00
deb : deb -src
@for DIST in $( DEB_DIST) ; do \
PBUILDER_OPTS = " $( PBUILDER_OPTS) --distribution $$ {DIST} --basetgz $( PBUILDER_CACHE_DIR) / $$ {DIST}- $( PBUILDER_ARCH) -base.tgz --buildresult $( CURDIR) /deb-build/ $$ {DIST} " ; \
$( PBUILDER_BIN) create $$ { PBUILDER_OPTS} --othermirror " deb http://archive.ubuntu.com/ubuntu $$ {DIST} universe " ; \
$( PBUILDER_BIN) update $$ { PBUILDER_OPTS} ; \
2018-03-09 06:56:36 +00:00
$( PBUILDER_BIN) build $$ { PBUILDER_OPTS} deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} .dsc ; \
2016-10-26 21:24:15 +00:00
done
@echo "#############################################"
@echo "Ansible DEB artifacts:"
@for DIST in $( DEB_DIST) ; do \
2018-03-09 06:56:36 +00:00
echo deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _amd64.changes ; \
2016-10-26 21:24:15 +00:00
done
@echo "#############################################"
# Build package outside of pbuilder, with locally installed dependencies.
# Install BuildRequires as noted in packaging/debian/control.
2017-08-10 21:35:58 +00:00
.PHONY : local_deb
2016-10-26 21:24:15 +00:00
local_deb : debian
2014-06-20 20:04:10 +00:00
@for DIST in $( DEB_DIST) ; do \
( cd deb-build/$$ { DIST} /$( NAME) -$( VERSION) / && $( DEBUILD) -b) ; \
done
@echo "#############################################"
@echo "Ansible DEB artifacts:"
@for DIST in $( DEB_DIST) ; do \
2018-03-09 06:56:36 +00:00
echo deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _amd64.changes ; \
2014-06-20 20:04:10 +00:00
done
@echo "#############################################"
2017-08-10 21:35:58 +00:00
.PHONY : deb -src
2014-06-20 20:04:10 +00:00
deb-src : debian
@for DIST in $( DEB_DIST) ; do \
( cd deb-build/$$ { DIST} /$( NAME) -$( VERSION) / && $( DEBUILD) -S) ; \
done
@echo "#############################################"
@echo "Ansible DEB artifacts:"
@for DIST in $( DEB_DIST) ; do \
2018-05-22 01:21:16 +00:00
echo deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _source.changes ; \
2014-06-20 20:04:10 +00:00
done
@echo "#############################################"
2017-08-10 21:35:58 +00:00
.PHONY : deb -upload
2014-06-20 20:04:10 +00:00
deb-upload : deb
@for DIST in $( DEB_DIST) ; do \
2018-05-22 01:21:16 +00:00
$( DPUT_BIN) $( DPUT_OPTS) $( DEB_PPA) deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _amd64.changes ; \
2014-06-20 20:04:10 +00:00
done
2017-08-10 21:35:58 +00:00
.PHONY : deb -src -upload
2014-06-20 20:04:10 +00:00
deb-src-upload : deb -src
@for DIST in $( DEB_DIST) ; do \
2018-05-22 01:21:16 +00:00
$( DPUT_BIN) $( DPUT_OPTS) $( DEB_PPA) deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _source.changes ; \
2014-06-20 20:04:10 +00:00
done
2012-04-21 15:56:06 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : epub
2017-05-01 17:40:49 +00:00
epub :
( cd docs/docsite/; CPUS = $( CPUS) make epub)
2012-04-21 15:56:06 +00:00
2017-05-01 17:40:49 +00:00
# for arch or gentoo, read instructions in the appropriate 'packaging' subdirectory directory
2017-08-10 21:35:58 +00:00
.PHONY : webdocs
2016-07-23 22:15:45 +00:00
webdocs :
2017-01-13 19:12:51 +00:00
( cd docs/docsite/; CPUS = $( CPUS) make docs)
2013-04-12 21:41:16 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : generate_asciidoc
2017-03-30 17:13:05 +00:00
generate_asciidoc : lib /ansible /cli /*.py
2017-09-07 19:44:20 +00:00
mkdir -p ./docs/man/man1/ ; \
PYTHONPATH = ./lib $( GENERATE_CLI) --template-file= docs/templates/man.j2 --output-dir= docs/man/man1/ --output-format man lib/ansible/cli/*.py
2017-03-30 17:13:05 +00:00
docs : generate_asciidoc
2017-03-23 05:11:40 +00:00
make $( MANPAGES)
2016-07-23 22:15:45 +00:00
2017-08-10 21:35:58 +00:00
.PHONY : alldocs
2016-07-23 22:15:45 +00:00
alldocs : docs webdocs
2017-03-23 05:11:40 +00:00
2017-07-12 12:51:38 +00:00
version :
@echo $( VERSION)