summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-27 01:15:51 +0100
committerdavidovski <david@davidovski.xyz>2022-06-27 01:15:51 +0100
commita000bd4176ac282fb004fe53319e2b3b22383085 (patch)
treef6594296d5df2babfb26f0a99ad6acfd26f99ef8
parent7bba6cd7612293796e905885f9ed3072877798ab (diff)
added check and install to makefile
-rwxr-xr-xMakefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0829535..7eea09c 100755
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,17 @@ bootstrap: shmk0
build: bootstrap
@echo all xiutils
- @./build.shmk
+ @./build.shmk build
clean:
@rm -r dist
@rm -r shmk
+ @./build.shmk clean
+
+check:
+ @./build.shmk check
+
+install:
+ @./build.shmk install
+
+