commit a62ba1e9e86bc3882323598a57ff5296329c84da (patch)
parent 9af62fa24d3216841e0dd8c43a517a195d61ef13
Author: Alex Karle <alex@alexkarle.com>
Date: Sat, 24 Apr 2021 00:32:38 -0400
make: Fix BSD make incompatability with kiosk build
$< is a GNU-make feature (when used outside implicit rules), so the
build failed on OpenBSD.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -30,7 +30,7 @@ jam-tuesday/greatest-hits: $(SETS) jam-tuesday/stats.sh
bin/kiosk: src/kiosk.c
mkdir -p bin
- $(CC) $(CFLAGS) -DMANDIR="\"`pwd`\"" $< -o $@
+ $(CC) $(CFLAGS) -DMANDIR="\"`pwd`\"" src/kiosk.c -o $@
$(HTML): Makefile