blob: 92507aef3e04ea48fad25820945251ce7fb9a94c (
plain)
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
|
DESTDIR="" # leave empty for the current system or provide a fakeroot here
PREFIX="/usr"
.PHONY: all clean install debug
all:
mkdir -p build
go build -o build/ceres *.go
clean:
rm -rf build
install: all
install -Dm 755 build/ceres $(DESTDIR)$(PREFIX)/bin/ceres
install -Dm 644 config/default.json $(DESTDIR)/etc/ceres/config.json
install -Dm 644 data/static/style.css $(DESTDIR)$(PREFIX)/share/ceres/static/style.css
install -Dm 644 data/templates/footer.html $(DESTDIR)$(PREFIX)/share/ceres/templates/footer.html
install -Dm 644 data/templates/index.html $(DESTDIR)$(PREFIX)/share/ceres/templates/index.html
install -Dm 644 data/templates/recipe_edit.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe_edit.html
install -Dm 644 data/templates/head.html $(DESTDIR)$(PREFIX)/share/ceres/templates/head.html
install -Dm 644 data/templates/recipe_confirm_deletion.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe_confirm_deletion.html
install -Dm 644 data/templates/recipe.html $(DESTDIR)$(PREFIX)/share/ceres/templates/recipe.html
install -dm 700 $(DESTDIR)/var/lib/ceres
debug:
go run *.go -c config/debug.json
|