Skip to content

Commit 8e4951a

Browse files
committed
Tidy up Makefile by removing unused targets
1 parent e217cbf commit 8e4951a

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

Makefile

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,3 @@ build:
33

44
run:
55
go run ./cmd/andrew/main.go $$HOME/Developer/playtechnique/website/content
6-
7-
test:
8-
docker run --rm -v "$${PWD}":/usr/src/andrew -w /usr/src/andrew golang:1.23 go test
9-
10-
SSL_DIR := ./test-ssl-cert
11-
KEY_FILE := server.key
12-
CERT_FILE := server.crt
13-
14-
generate-ssl-cert:
15-
@mkdir -p $(SSL_DIR)
16-
@cd $(SSL_DIR) && \
17-
openssl genrsa -out $(KEY_FILE) 2048 && \
18-
openssl ecparam -genkey -name secp384r1 -out $(KEY_FILE) && \
19-
openssl req -new -x509 -sha256 -key $(KEY_FILE) -out $(CERT_FILE) -days 3650
20-
21-
clean-ssl-cert:
22-
@rm -rf $(SSL_DIR)

0 commit comments

Comments
 (0)