diff options
author | Marvin Borner | 2020-07-09 22:33:43 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-09 22:33:43 +0200 |
commit | 1edfdf5f3a316a36108a0a853b0a2553d116d6fc (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /Makefile | |
parent | 18edde9bd3603f3f867cebce100e7b22be9012cd (diff) |
Rewriiiiiiiiiite!
Okay, okay. I know, rewriting projects all the time is dumb.
Buuut, we really don't want to work with our old and ugly code anymore.
Furthermore we'll be using Deno now!
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 3fb13be..0000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -.PHONY: all - -all: clean build - -clean: - $(RM) -rv build/ out/ *.class - $(RM) -rv /usr/bin/kloud/ - $(RM) -rv /usr/share/kloud/kloud-*-all.jar - -build: - gradle build - @echo Success! The .jar file should be in build/libs/. You may want to use \'sudo make install\' now. - -install: -ifdef OS - @echo Kloud can't be installed on Windows currently, please execute the jar file manually -else - ifeq ($(shell uname), Linux) - mkdir -p /usr/share/kloud/ - userdel kloud || true - useradd -r -d /usr/share/kloud kloud || true - chown -R kloud /usr/share/kloud - cp build/libs/kloud-*-all.jar /usr/share/kloud/ - echo -e "#!/bin/sh\nsudo -u kloud java -jar /usr/share/kloud/kloud-*-all.jar \$$@" > /usr/bin/kloud - chmod +x /usr/bin/kloud - else - @echo This OS doesn't support automatic installation, please execute the jar file manually - endif -endif |