The $< macro in non-suffix rules is an extension and doesn't work with,
for example, OpenBSD make.
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index d34d0a5..ac94c1b 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ native/himitsu-firefox-native: $(NATIVE_SOURCE)
cd native && $(HARE) build $(HAREFLAGS) -o himitsu-firefox-native
native/manifest.json: native/manifest.json.in
- sed -e "s:@LIBEXECDIR@:$(LIBEXECDIR):g" <$< >$@
+ sed -e "s:@LIBEXECDIR@:$(LIBEXECDIR):g" <native/manifest.json.in >$@
himitsu@drewdevault.com.xpi:
zip -r -FS $@ content icons manifest.json
--
2.43.2