mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-05 17:10:57 +01:00
17 lines
321 B
Makefile
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
|
|
|
|
|