1
1
mirror of https://git.sr.ht/~emersion/tlstunnel synced 2024-09-14 22:00:37 +02:00

Add Makefile

This commit is contained in:
Simon Ser 2020-09-09 15:13:57 +02:00
parent 5d422977df
commit 748c966d44
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
2 changed files with 27 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/tlstunnel
/tlstunnel.1

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
.POSIX:
.SUFFIXES:
GO = go
RM = rm
SCDOC = scdoc
GOFLAGS =
PREFIX = /usr/local
BINDIR = bin
MANDIR = share/man
all: tlstunnel tlstunnel.1
tlstunnel:
$(GO) build $(GOFLAGS) .
tlstunnel.1: tlstunnel.1.scd
$(SCDOC) <tlstunnel.1.scd >tlstunnel.1
clean:
$(RM) -rf tlstunnel doc/tlstunnel.1
install: all
mkdir -p $(DESTDIR)$(PREFIX)/$(BINDIR)
mkdir -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
cp -f tlstunnel $(DESTDIR)$(PREFIX)/$(BINDIR)
cp -f tlstunnel.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1