From 8012cff4bffe3d35cec20d4b871302ec61408f38 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Sat, 31 Dec 2022 05:00:01 +0100 Subject: [PATCH] makefile: add access logs file --- zig-impl/makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zig-impl/makefile b/zig-impl/makefile index 9a53625..d3e1dd3 100644 --- a/zig-impl/makefile +++ b/zig-impl/makefile @@ -28,8 +28,9 @@ clean: mrproper: clean @-rm -r docs zig-cache zig-out 2>/dev/null +ACCESS_LOGS ?= ./access.log servedoc: - darkhttpd docs/ --addr 127.0.0.1 --port 35000 + darkhttpd docs/ --addr 127.0.0.1 --port 35000 --log $(ACCESS_LOGS) # You can add your specific instructions there. -include makefile.user