You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bpytop/Makefile

14 lines
336 B

4 years ago
all:
@echo Run \'make install\' to install bpytop.
install:
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@cp -p bpytop $(DESTDIR)$(PREFIX)/bin/bpytop
@mkdir -p $(DESTDIR)$(DOCDIR)
@cp -p README.md $(DESTDIR)$(DOCDIR)
@chmod 755 $(DESTDIR)$(PREFIX)/bin/bpytop
uninstall:
@rm -rf $(DESTDIR)$(PREFIX)/bin/bpytop
@rm -rf $(DESTDIR)$(DOCDIR)