aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 09cdbe303abd7add693e9e3e630d8770f49d785d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: all

all: clean build

clean:
	$(RM) -rv build/ out/ *.class

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