opensnitch/daemon/Makefile
2020-07-16 23:04:11 +02:00

16 lines
283 B
Makefile

all: opensnitchd
install:
@mkdir -p /etc/opensnitchd/rules
@cp opensnitchd /usr/local/bin/
@cp opensnitchd.service /etc/systemd/system/
@cp default-config.json /etc/opensnitchd/
@systemctl daemon-reload
opensnitchd:
@go build -o opensnitchd .
clean:
@rm -rf opensnitchd