opensnitch/daemon/Makefile
Andrew Voynov 7373e18430
chore(wiki): removed trailing whitespaces
Also fixed typo for the qttools5-dev package name.
For the clean up used `rg -l0 '[ \t]+$' | xargs -0 sd '[ \t]+$' ''`.
2024-06-06 11:44:40 +03:00

17 lines
320 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