mirror of
https://github.com/jb55/nostril.git
synced 2024-11-24 08:59:08 -05:00
make: install - remove -D for better cross-platform compatibility
use mkdir -p
This commit is contained in:
parent
770cc8bcce
commit
80cd32af54
7
Makefile
7
Makefile
|
@ -55,9 +55,10 @@ 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)/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 > $@
|
||||
|
|
Loading…
Reference in New Issue
Block a user