qubes-linux-template-builder/Makefile

63 lines
2.1 KiB
Makefile
Raw Normal View History

2011-11-06 13:02:24 +00:00
ifndef DIST
$(error "You must set DIST variable, e.g. DIST=fc14")
endif
export DIST
2011-11-06 13:02:24 +00:00
dist_ver := $(shell DIST=$(DIST) ./builder_setup)
DISTRIBUTION := $(word 1,$(dist_ver))
DIST_VERSION := $(word 2,$(dist_ver))
TEMPLATE_NAME := $(word 3,$(dist_ver))
ifeq (,$(TEMPLATE_NAME))
TEMPLATE_NAME := $(DISTRIBUTION)-$(DIST_VERSION)-x64
ifdef TEMPLATE_FLAVOR
TEMPLATE_NAME := $(TEMPLATE_NAME)-$(TEMPLATE_FLAVOR)
endif
endif
# Make sure names are < 32 characters
fix_up := $(shell TEMPLATE_NAME=$(TEMPLATE_NAME) ./builder_fix_filenames)
TEMPLATE_NAME := $(word 1,$(fix_up))
2015-02-10 14:50:45 +00:00
export DISTRIBUTION
export TEMPLATE_NAME
VERSION := $(shell cat version)
TIMESTAMP := $(shell date -u +%Y%m%d%H%M)
2011-11-06 13:02:24 +00:00
help:
@echo "make rpms -- generate template rpm"
@echo "make update-repo-installer -- copy newly generated rpm to installer repo"
2011-11-09 11:49:54 +00:00
@echo "make clean -- copy newly generated rpm to installer repo"
2011-11-06 13:02:24 +00:00
rpms:
@echo $(TIMESTAMP) > build_timestamp_$(DIST)
2011-11-06 13:02:24 +00:00
@echo "Building template: $(TEMPLATE_NAME)"
sudo -E ./prepare_image prepared_images/$(TEMPLATE_NAME).img && \
sudo -E ./qubeize_image prepared_images/$(TEMPLATE_NAME).img $(TEMPLATE_NAME) && \
2011-11-06 13:02:24 +00:00
./build_template_rpm $(TEMPLATE_NAME) || exit 1; \
./create_template_list.sh || : \
2011-11-06 13:02:24 +00:00
rootimg-build:
sudo -E ./prepare_image prepared_images/$(TEMPLATE_NAME).img && \
sudo -E ./qubeize_image prepared_images/$(TEMPLATE_NAME).img $(TEMPLATE_NAME)
2011-11-06 13:02:24 +00:00
update-repo-installer:
[ -z "$$UPDATE_REPO" ] && UPDATE_REPO=../installer/yum/qubes-dom0;\
ln -f rpm/noarch/qubes-template-$(TEMPLATE_NAME)-$(VERSION)-$(shell cat build_timestamp_$(DIST))*.noarch.rpm $$UPDATE_REPO/rpm
2011-11-06 13:02:24 +00:00
prepare-repo-template:
rm -rf yum_repo_qubes/$(DIST)
mkdir -p yum_repo_qubes/$(DIST)/rpm yum_repo_qubes/$(DIST)/repodata
2011-11-09 11:49:54 +00:00
clean:
sudo rm -fr qubeized_images/root.img.*
sudo rm -fr qubeized_images/$(TEMPLATE_NAME)*
2011-11-09 16:14:09 +00:00
sudo rm -fr rpmbuild/BUILDROOT/*
sudo rm -fr rpmbuild/tmp/*
2013-02-16 16:17:23 +00:00
# We're not removing any images from prepared_images/ intentionally
2011-11-09 11:49:54 +00:00
# because the user might want to keep using the same image for a long time
2013-02-16 16:17:23 +00:00
# and they are not dependent on any of the Qubes packages
2011-11-06 13:02:24 +00:00