Makefile (446B)
1 # sxalert Makefile 2 # GNU GPL v3.0 3 4 CC=c99 5 MD=/usr/share/man/man1/ 6 7 sxalert: sxalert.c sxalert.h config.h 8 $(CC) sxalert.c -I/usr/include/freetype2/ -lXft -lX11 \ 9 -lfreetype -lXrandr -g -o sxalert \ 10 -Wall -Wextra -Wpedantic \ 11 -Wconversion -Wsign-conversion \ 12 -Wshadow -Wstrict-prototypes \ 13 -Wmissing-prototypes -Wformat=2 14 install: 15 mv sxalert /bin/sxalert 16 cp sxalert.1 $(MD) 17 uninstall: 18 rm /bin/sxalert 19 rm $(MD)sxalert.1 20 clean: 21 rm sxalert