pert/Makefile
Lukáš Mešťan 0fb88d676f makefile
2016-04-12 17:43:31 +02:00

16 lines
267 B
Makefile

prefix=/usr/local
# files that need mode 755
EXEC_FILES=pert
all:
@echo "usage: make install"
@echo " make uninstall"
install:
install -m 0755 $(EXEC_FILES) $(prefix)/bin
uninstall:
test -d $(prefix)/bin && \
cd $(prefix)/bin && \
rm -f $(EXEC_FILES)