Browse Source

Add `vbump` and `release` targets, defaulting to Z

Alois Mahdal 7 years ago
parent
commit
a0af950919
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      src/mkit.mk

+ 6
- 0
src/mkit.mk View File

@@ -26,6 +26,9 @@ rpmstuff: dist
26 26
 install: all
27 27
 	@$(MKIT_DIR)/make install
28 28
 
29
+release:
30
+	@$(MKIT_DIR)/make release_z
31
+
29 32
 release_x:
30 33
 	@$(MKIT_DIR)/make release_x
31 34
 
@@ -38,6 +41,9 @@ release_z:
38 41
 uninstall:
39 42
 	@$(MKIT_DIR)/make uninstall
40 43
 
44
+vbump:
45
+	@$(MKIT_DIR)/make vbump_z
46
+
41 47
 vbump_x:
42 48
 	@$(MKIT_DIR)/make vbump_x
43 49