sxalert

Simple notification system for X
git clone git://mcdim.xyz/sxalert.git
Log | Files | Refs | README | LICENSE

Makefile (257B)


      1 # sxalert Makefile
      2 # GNU GPL v3.0
      3 
      4 CC=c99
      5 MD=/usr/share/man/man1/
      6 
      7 sxalert:
      8 	$(CC) sxalert.c -I/usr/include/freetype2/ -lXft -lX11 -lfreetype -g -o sxalert
      9 install:
     10 	mv sxalert /bin/sxalert
     11 	cp sxalert.1 $(MD)
     12 uninstall:
     13 	rm /bin/sxalert
     14 	rm $(MD)sxalert.1