first commit

This commit is contained in:
2023-08-16 22:38:32 +02:00
commit c81e05c841
6 changed files with 171 additions and 0 deletions

22
makefile Normal file
View File

@ -0,0 +1,22 @@
.PHONY:all
all:
gcc -Wall *.c -lpulse-simple
.PHONY:run
run:
clear
gcc -Wall *.c -lpulse-simple
./a.out
.PHONY:debug
debug:
gcc -Wall -g *.c -lpulse-simple
gdb a.out
.PHONY:install
install:
cp a.out /usr/local/bin/countdown
.PHONY:uninstall
uninstall:
rm /usr/local/bin/countdown