tunsafe-clang15/Makefile
2018-08-08 23:27:58 +02:00

24 lines
257 B
Makefile

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