tibia/templates/web-demo/demo.mk

10 lines
277 B
Makefile
Raw Normal View History

2024-01-20 06:06:21 +00:00
ALL += build/index.html build/cert.pem build/key.pem
2024-01-18 17:13:31 +00:00
build/index.html: src/index.html | build
cp $^ $@
2024-01-20 06:06:21 +00:00
build/key.pem: build/cert.pem
build/cert.pem: | build
yes "" | openssl req -x509 -newkey rsa:2048 -keyout build/key.pem -out build/cert.pem -days 365 -nodes 2>/dev/null