tibia/templates/web-demo/demo.mk

10 lines
289 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
2024-02-01 05:59:10 +00:00
build/index.html: ${DATA_DIR}/src/index.html | build
2024-01-18 17:13:31 +00:00
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