mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 04:57:53 +00:00
17 lines
300 B
Makefile
Executable File
17 lines
300 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
CFLAGS=-O3 -fstack-protector-strong
|
|
CXXFLAGS=-O3 -fstack-protector-strong
|
|
|
|
%:
|
|
dh $@ --with systemd
|
|
|
|
override_dh_auto_build:
|
|
make -j 2
|
|
|
|
override_dh_systemd_start:
|
|
dh_systemd_start --restart-after-upgrade
|
|
|
|
override_dh_installinit:
|
|
dh_installinit --name=zerotier-one -- defaults
|