commit 08ad8e5b0618b3185af366a79ecc7674f11b4d62
parent f73ca819abaf9bf46952eabdb3d41a6e93331658
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Sun, 16 Apr 2023 22:10:47 +0200
Fix the POSIX Makefile
The man page build rule was not POSIX compliant. In POSIX Make, the '$<'
macro is only defined for inference rules and is not defined elsewhere.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -53,7 +53,7 @@ libsmsh.so: $(OBJ)
@$(CC) $(CFLAGS) $(INCS) -DSMSH_SHARED_BUILD -c $< -o $@
smsh.5: doc/smsh.5.scd
- scdoc < $< > $@
+ scdoc < doc/smsh.5.scd > $@
################################################################################
# Installation