mirror of
https://github.com/jb55/nostril.git
synced 2024-11-24 00:49:07 -05:00
make: install - remove -D for better cross-platform compatibility
use mkdir -p
This commit is contained in:
parent
f9ec1d1aa3
commit
c914d7a01d
8
Makefile
8
Makefile
|
@ -55,9 +55,11 @@ nostril: $(HEADERS) $(OBJS) $(ARS)
|
||||||
$(CC) $(CFLAGS) $(OBJS) $(ARS) -o $@
|
$(CC) $(CFLAGS) $(OBJS) $(ARS) -o $@
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
install -Dm644 doc/nostril.1 $(PREFIX)/share/man/man1/nostril.1
|
mkdir -p $(PREFIX)/share/man/man1
|
||||||
install -Dm755 nostril $(PREFIX)/bin/nostril
|
mkdir -p $(PREFIX)/bin
|
||||||
install -Dm755 nostril-query $(PREFIX)/bin/nostril-query
|
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
|
config.h: configurator
|
||||||
./configurator > $@
|
./configurator > $@
|
||||||
|
|
Loading…
Reference in New Issue
Block a user