mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 13:11:31 +00:00
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>
28 lines
672 B
Makefile
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"
|