Files
mixer-tools/Makefile.am
T
Tudor Marcu 5dbc222b10 Add helpers file for the scripts to use
This will do a lot of the ugly work that does not need to be taking up space
in the main scripts, and should be abstracted out so they are easier to read.

Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
2016-10-27 15:09:04 -07:00

28 lines
672 B
Makefile

dist_bin_SCRIPTS = \
add-rpms.sh \
create-update.sh \
build-chroots.sh \
init-mix.sh \
update-bundles.sh \
pack-maker.sh \
superpack-maker.sh
instdir = $(datadir)/mixer-tools
dist_inst_DATA = helpers
configdir = $(datadir)/defaults/mixer
dist_config_DATA = \
yum.conf.in \
certattributes.cnf
EXTRA_DIST = COPYING
release:
@git rev-parse v$(PACKAGE_VERSION) &> /dev/null; \
if [ "$$?" -eq 0 ]; then \
echo "Error: Release $(PACKAGE_VERSION) already exists."; \
echo "Bump version in configure.ac before releasing."; \
exit 1; \
fi
@git tag -a -m "Release $(PACKAGE_VERSION)" v$(PACKAGE_VERSION)
@printf "\nNew release $(PACKAGE_VERSION) tagged!\n\n"