diff options
author | Marvin Borner | 2023-06-19 22:38:59 +0200 |
---|---|---|
committer | Marvin Borner | 2023-06-19 22:38:59 +0200 |
commit | 1f7fb66baee1b1c655eafef51b7603c2773a6a84 (patch) | |
tree | 7cdcde0bcb924b4f081c20c049b56497c52659f0 /makefile | |
parent | 01a943366a5eb813627c6131aeb952a98b2c46a7 (diff) |
Added features
hehe
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..c51bf60 --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +TARGET=vault +PREFIX?=/usr/local + +install: + @mkdir -p $(PREFIX)/bin + @cp -f $(TARGET).sh $(PREFIX)/bin/$(TARGET) + @chmod 755 $(PREFIX)/bin/$(TARGET) |