sus/Makefile
2021-05-03 01:21:49 +03:00

17 lines
221 B
Makefile

build:
cc -lcrypt -I. sus.c -o sus
all: build install
clean:
rm -vrf sus
install:
ifneq ($(shell id -u), 0)
@echo "You must be root to perform this action."
else
cp sus /usr/bin/sus
chmod 4711 /usr/bin/sus
endif