1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Ross Vandegrift <rvandegrift@debian.org>
Date: Tue, 4 Jul 2023 13:36:56 -0700
Subject: Build https-enabled variant
Forwarded: not-needed
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 39a851a..7fa35b1 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ SSL_LIBS ?= -lssl
INSTALL ?= install -c
STRIP ?= strip -s
-all: htpdate
+all: https
htpdate: htpdate.c
$(CC) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o htpdate htpdate.c
|