Initial commit

This commit is contained in:
Roman Zhuravlev 2025-04-23 23:16:55 +05:00
commit 358c67cc6b
5 changed files with 305 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
PREFIX ?= /usr
all:
@echo Run \'make install\' to install MCA
install:
@install -m 0755 mca.sh -D $(DESTDIR)$(PREFIX)/bin/mca
@install -m 0644 screenrc -Dt $(DESTDIR)/etc/mca
uninstall:
@rm -rf $(DESTDIR)/etc/mca
@rm -f $(DESTDIR)$(PREFIX)/bin/mca