summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorAli H. Fardan <raiz@firemail.cc>2016-09-05 01:13:48 +0300
committerAli H. Fardan <raiz@firemail.cc>2016-09-05 01:13:48 +0300
commit9fa858daeafb5398cdf19af9483b2854fe6e9772 (patch)
tree02265b08f8ec7c218e564d59f4cebe7ce181e7cc /config.mk
parent1654efe1d67d0bec010792e8c6eb64a0f8e88a58 (diff)
added a tool for resetting the status bar && worked around some issues && removed the makefile (we need a better one)
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk22
1 files changed, 0 insertions, 22 deletions
diff --git a/config.mk b/config.mk
deleted file mode 100644
index 704558a..0000000
--- a/config.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-NAME = slstatus
-VERSION = 1.0
-
-# Customize below to fit your system
-
-PREFIX = /usr/local
-
-X11INC = /usr/X11R6/include
-X11LIB = /usr/X11R6/lib
-
-# includes and libs
-INCS = -I. -I/usr/include -I${X11INC}
-LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound
-
-# flags
-CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
-CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS}
-LDFLAGS = ${LIBS}
-
-# compiler and linker
-CC = cc
-