Browse Source

Makefile: update-repo-installer

Joanna Rutkowska 13 years ago
parent
commit
73064a5dad
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Makefile

+ 5 - 0
Makefile

@@ -7,6 +7,7 @@ help:
 	@echo "make rpms                  -- generate binary rpm packages"
 	@echo "make update-repo-current   -- copy newly generated rpms to qubes yum repo"
 	@echo "make update-repo-unstable  -- same, but to -testing repo"
+	@echo "make update-repo-installer -- copy dom0 rpms to installer repo"
 	@echo "make clean                 -- cleanup"
 
 rpms:	
@@ -31,6 +32,10 @@ update-repo-unstable:
 	ln -f $(RPMS_DIR)/x86_64/qubes-core-*vm-*$(VERSION_VM)*fc14*.rpm ../yum/current-release/unstable/vm/f14/rpm/
 	cd ../yum && ./update_repo.sh
 
+update-repo-installer:
+	ln -f $(RPMS_DIR)/x86_64/qubes-core-dom0-*$(VERSION_DOM0)*fc13*.rpm ../installer/yum/qubes-dom0/rpm/
+	cd ../installer/yum && ./update_repo.sh
+
 clean:
 	(cd appvm && make clean)
 	(cd dom0/restore && make clean)