Browse Source

Update own dogfood

Alois Mahdal 7 years ago
parent
commit
9bf9f47afa
2 changed files with 7 additions and 1 deletions
  1. 1
    1
      utils/mkit/make
  2. 6
    0
      utils/mkit/mkit.mk

+ 1
- 1
utils/mkit/make View File

66
 #
66
 #
67
 # This MKit version
67
 # This MKit version
68
 #
68
 #
69
-MKIT_VERSION=0.0.17+devel.g99ff8e5
69
+MKIT_VERSION=0.0.18+devel.ga0af950
70
 
70
 
71
 
71
 
72
 . "$MKIT_DIR/include/mkit.sh" || die "failed to init; check if MKIT_DIR is set properly: $MKIT_DIR"
72
 . "$MKIT_DIR/include/mkit.sh" || die "failed to init; check if MKIT_DIR is set properly: $MKIT_DIR"

+ 6
- 0
utils/mkit/mkit.mk View File

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