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

12 lines
128 B
Makefile
Raw Permalink Normal View History

2024-09-25 08:41:49 +02:00
all:
2025-06-19 02:21:41 +02:00
$(CC) -Wall -o chkpwr chkpwr.c
2024-09-25 08:41:49 +02:00
clean:
2025-06-19 02:21:41 +02:00
rm -f ./chkpwr
2024-09-25 08:41:49 +02:00
install:
2025-06-19 02:21:41 +02:00
cp ./chkpwr /usr/bin/
2024-09-25 08:41:49 +02:00
uninstall:
2025-06-19 02:21:41 +02:00
rm -f /usr/bin/chkr
2024-09-25 08:41:49 +02:00