tunsafe-clang15/Makefile

24 lines
257 B
Makefile
Raw Normal View History

2018-08-08 16:27:58 -05:00
UNAME := $(shell uname)
.PHONY: tunsafe
ifeq ($(UNAME), Linux)
tunsafe:
sh ./build_linux.sh
endif
ifeq ($(UNAME), FreeBSD)
tunsafe:
sh ./build_freebsd.sh
endif
ifeq ($(UNAME), Darwin)
tunsafe:
sh ./build_osx.sh
endif
install:
cp tunsafe /usr/bin