repo: tlswrap action: commit revision: path_from: revision_from: 00aa90bf667382de870d1320ddc09bc19af8bc0a: path_to: revision_to:
commit 00aa90bf667382de870d1320ddc09bc19af8bc0a Author: epochDate: Mon Feb 28 01:49:47 2022 +0000 renamed to tlswrap diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6484c7c5f6fcc27b8cf1d8bb61aa9c9e77d8bfe7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +tlswrap diff --git a/Makefile b/Makefile
--- a/Makefile +++ b/Makefile @@ -1,3 +1,12 @@ -sslwrap: CFLAGS=-pedantic -Wall -sslwrap: LDLIBS=-lssl -lcrypto -sslwrap: sslwrap.c +PREFIX:=/usr/local + +.PHONY: install all + +all: tlswrap + +tlswrap: CFLAGS=-pedantic -Wall +tlswrap: LDLIBS=-lssl -lcrypto +tlswrap: tlswrap.c + +install: + install -Dt $(PREFIX)/bin tlswrap diff --git a/sslwrap.c b/tlswrap.c similarity index 100% rename from sslwrap.c rename to tlswrap.c
-----END OF PAGE-----