sxalert

Simple notification system for X
Log | Files | Refs | README | LICENSE

commit 47fe782e62527eee899d0942fe8e154e2c22df07
parent 6c3bab8b89bccf5956520952723f960304f631c4
Author: Michael Constantine Dimopoulos <mk@mcdim.xyz>
Date:   Sat, 11 Nov 2023 00:25:13 +0000

Updated Makefile

Diffstat:
MMakefile | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,11 @@ +CC=c99 +MD=/usr/share/man/man1/ + sxalert: - c99 sxalert.c -I/usr/include/freetype2/ -lXft -lX11 -lfreetype -o sxalert + $(CC) sxalert.c -I/usr/include/freetype2/ -lXft -lX11 -lfreetype -o sxalert install: mv sxalert /bin/sxalert + mv sxalert.1 $(MD) uninstall: rm /bin/sxalert + rm $(MD)sxalert.1