mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 08:34:40 +01:00
18 lines
259 B
Makefile
18 lines
259 B
Makefile
all: opensnitchd
|
|
|
|
install:
|
|
@mkdir -p /etc/opensnitchd/rules
|
|
@cp opensnitchd /usr/local/bin/
|
|
@cp opensnitchd.service /etc/systemd/system/
|
|
@systemctl daemon-reload
|
|
|
|
deps:
|
|
@glide up
|
|
|
|
opensnitchd:
|
|
@go build -o opensnitchd .
|
|
|
|
clean:
|
|
@rm -rf opensnitchd
|
|
|
|
|