11 lines
189 B
Makefile
11 lines
189 B
Makefile
PREFIX ?= /usr
|
|
|
|
all:
|
|
@echo Run \'make install\' to install pash \(POSIX sh\).
|
|
|
|
install:
|
|
@install -Dm755 pash $(DESTDIR)$(PREFIX)/bin/pash
|
|
|
|
uninstall:
|
|
@rm -f $(DESTDIR)$(PREFIX)/bin/pash
|