commit 97744c480c9976f95ccd76bdb341fc3619c16eb6 parent 27b36ed2f4667b7e5bfb6af5f2a8a565f284c409 Author: William Casarin <jb55@jb55.com> Date: Tue, 2 Jul 2024 10:10:04 -0700 Merge '...better cross-platform compatibility fixes' #15 Diffstat:
M | Makefile | | | 8 | +++++--- |
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -55,9 +55,11 @@ nostril: $(HEADERS) $(OBJS) $(ARS) $(CC) $(CFLAGS) $(OBJS) $(ARS) -o $@ install: all - install -Dm644 doc/nostril.1 $(PREFIX)/share/man/man1/nostril.1 - install -Dm755 nostril $(PREFIX)/bin/nostril - install -Dm755 nostril-query $(PREFIX)/bin/nostril-query + mkdir -p $(PREFIX)/share/man/man1 + mkdir -p $(PREFIX)/bin + install -m644 doc/nostril.1 $(PREFIX)/share/man/man1/nostril.1 + install -m755 nostril $(PREFIX)/bin/nostril + install -m755 nostril-query $(PREFIX)/bin/nostril-query config.h: configurator ./configurator > $@