2010-04-05 20:58:57 +02:00
|
|
|
RPMS_DIR=rpm/
|
2011-04-04 10:55:25 +02:00
|
|
|
|
2013-03-12 16:50:14 +01:00
|
|
|
VERSION := $(shell cat version)
|
2011-04-04 10:55:25 +02:00
|
|
|
|
2013-02-28 14:43:32 +01:00
|
|
|
DIST_DOM0 ?= fc18
|
2013-01-25 03:07:16 +01:00
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
help:
|
2011-04-04 10:55:25 +02:00
|
|
|
@echo "make rpms -- generate binary rpm packages"
|
2012-11-14 01:41:21 +01:00
|
|
|
@echo "make rpms-dom0 -- generate binary rpm packages for Dom0"
|
2011-04-04 10:55:25 +02:00
|
|
|
@echo "make update-repo-current -- copy newly generated rpms to qubes yum repo"
|
2011-05-09 18:40:51 +02:00
|
|
|
@echo "make update-repo-current-testing -- same, but to -current-testing repo"
|
2011-04-04 10:55:25 +02:00
|
|
|
@echo "make update-repo-unstable -- same, but to -testing repo"
|
2011-04-06 15:35:30 +02:00
|
|
|
@echo "make update-repo-installer -- copy dom0 rpms to installer repo"
|
2011-04-04 10:55:25 +02:00
|
|
|
@echo "make clean -- cleanup"
|
2010-04-05 20:58:57 +02:00
|
|
|
|
2013-03-07 04:12:37 +01:00
|
|
|
rpms: rpms-dom0
|
2012-11-07 17:58:08 +01:00
|
|
|
|
2013-03-07 04:12:37 +01:00
|
|
|
rpms-vm:
|
|
|
|
@true
|
2012-11-14 13:12:51 +01:00
|
|
|
|
2013-03-16 19:54:22 +01:00
|
|
|
rpms-dom0:
|
2012-11-07 17:58:08 +01:00
|
|
|
rpmbuild --define "_rpmdir $(RPMS_DIR)" -bb rpm_spec/core-dom0.spec
|
2013-03-12 16:55:05 +01:00
|
|
|
rpmbuild --define "_rpmdir $(RPMS_DIR)" -bb rpm_spec/core-dom0-doc.spec
|
2012-11-07 17:58:08 +01:00
|
|
|
rpm --addsign \
|
2013-03-12 16:55:05 +01:00
|
|
|
$(RPMS_DIR)/x86_64/qubes-core-dom0-$(VERSION)*.rpm \
|
|
|
|
$(RPMS_DIR)/noarch/qubes-core-dom0-doc-$(VERSION)*rpm
|
2012-11-07 17:58:08 +01:00
|
|
|
|
2010-04-05 20:58:57 +02:00
|
|
|
clean:
|
2013-03-20 15:33:19 +01:00
|
|
|
make -C dispvm clean
|
|
|
|
make -C qmemman clean
|