From 9fa858daeafb5398cdf19af9483b2854fe6e9772 Mon Sep 17 00:00:00 2001 From: "Ali H. Fardan" Date: Mon, 5 Sep 2016 01:13:48 +0300 Subject: added a tool for resetting the status bar && worked around some issues && removed the makefile (we need a better one) --- config.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 config.sh (limited to 'config.sh') diff --git a/config.sh b/config.sh new file mode 100644 index 0000000..c460bd9 --- /dev/null +++ b/config.sh @@ -0,0 +1,17 @@ +NAME="slstatus" +VERSION="1.0" + +PREFIX="/usr/local" + +X11INC="/usr/X11R6/include" +X11LIB="/usr/X11R6/lib" + +INCS="-I. -I/usr/include -I${X11INC}" +LIBS="-L/usr/lib -lc -L${X11LIB} -lX11 -lasound" + +CPPFLAGS="-DVERSION=\"${VERSION}\" -D_GNU_SOURCE" +CFLAGS="-std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS}" +LDFLAGS="${LIBS}" + +CC = cc + -- cgit v1.2.3