mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
cd9306294d
- Update default config path accordingly - Mention use of config file in README
33 lines
632 B
Makefile
33 lines
632 B
Makefile
GO=go
|
|
BINPATH=/usr/local/bin
|
|
DATAPATH=/var/bloat
|
|
ETCPATH=/etc
|
|
|
|
all: bloat
|
|
|
|
bloat: main.go
|
|
$(GO) build $(GOFLAGS) -o bloat main.go
|
|
|
|
install: bloat
|
|
cp bloat $(BINPATH)/bloat
|
|
chmod 0755 $(BINPATH)/bloat
|
|
mkdir -p $(DATAPATH)/database
|
|
cp -r templates $(DATAPATH)/
|
|
cp -r static $(DATAPATH)/
|
|
sed -e "s%=database%=$(DATAPATH)/database%g" \
|
|
-e "s%=templates%=$(DATAPATH)/templates%g" \
|
|
-e "s%=static%=$(DATAPATH)/static%g" \
|
|
< bloat.conf > $(ETCPATH)/bloat.conf
|
|
|
|
uninstall:
|
|
rm -f $(BINPATH)/bloat
|
|
rm -fr $(DATAPATH)/templates
|
|
rm -fr $(DATAPATH)/static
|
|
rm -f $(ETCPATH)/bloat.conf
|
|
|
|
clean:
|
|
rm -f bloat
|
|
|
|
run: bloat
|
|
./bloat
|