blob: 5024d8e8abb8f226929fd718564d5b2b4def6809 (
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
28
29
30
31
32
33
34
35
36
37
38
|
PREFIX?=/var/www
_INSTDIR=$(PREFIX)
BINDIR?=$(_INSTDIR)/api
api: main.go go.mod
@printf "\n%s\n\n" "Building tilde.institute API"
go build -o $@
@printf "\n%s\n\n" "...Done!"
.PHONY: clean
clean:
@printf "\n%s\n\n" "Cleaning build and module caches..."
go clean
go clean -cache -modcache
@printf "\n%s\n\n" "...Done!"
.PHONY: update
update:
@printf "\n%s\n\n" "Updating from upstream repository..."
git pull --rebase origin master
@printf "\n%s\n\n" "...Done!"
.PHONY: install
install:
@printf "\n%s\n\n%s\n" "Installing ..." "Creating Directories ..."
mkdir -p $(BINDIR)/web
@printf "\n%s\n" "Copying files..."
install -m755 api $(BINDIR)
install -m644 web/* $(BINDIR)
@printf "\n%s\n" "Setting ownership..."
chown -R www:www $(BINDIR)
@printf "\n%s\n\n" "...Done!"
.PHONY: uninstall
uninstall:
@printf "\n%s\n\n" "Removing files..."
rm -rf $(BINDIR)
@printf "\n%s\n\n" "...Done!"
|