opensnitch/daemon/Makefile
Gustavo Iñiguez Goia f751dc13c6 removed sudo from Makefiles
Documentation must be updated to indicate when to use sudo.

closes #291
2020-12-11 23:42:47 +01:00

17 lines
321 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/
@cp system-fw.json /etc/opensnitchd/
@systemctl daemon-reload
opensnitchd:
@go build -o opensnitchd .
clean:
@rm -rf opensnitchd