This repository has been archived on 2025-09-08. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
chkpwr/Makefile
2024-09-25 08:41:49 +02:00

12 lines
155 B
Makefile

all:
$(CC) -Wall -o checkpwrule checkpwrule.c
clean:
rm -f ./checkpwrule
install:
cp ./checkpwrule /usr/bin/
uninstall:
rm -f /usr/bin/checkpwrule