mirror of
https://github.com/Jintin/aliasme.git
synced 2026-05-08 00:37:41 -05:00
11 lines
184 B
Makefile
Executable File
11 lines
184 B
Makefile
Executable File
PREFIX ?= /usr/local
|
|
|
|
.PHONY: all test clean install
|
|
|
|
test:
|
|
test/aliastest.sh
|
|
|
|
install:
|
|
install -d $(DESTDIR)$(PREFIX)/bin
|
|
install -m 755 aliasme.sh $(DESTDIR)$(PREFIX)/bin/aliasme
|