| config.mk - xssstate - a simple utility to get the X screensaver state | |
| git clone git://git.suckless.org/xssstate | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| config.mk (475B) | |
| --- | |
| 1 # xssstate version | |
| 2 VERSION = 1.1 | |
| 3 | |
| 4 # Customize below to fit your system | |
| 5 | |
| 6 # paths | |
| 7 PREFIX = /usr/local | |
| 8 LIBDIR = ${PREFIX}/lib | |
| 9 MANPREFIX = ${PREFIX}/share/man | |
| 10 | |
| 11 # includes and libs | |
| 12 INCS = -I. -I/usr/include | |
| 13 LIBS = -L${LIBDIR} -lc -lX11 -lXss | |
| 14 | |
| 15 # flags | |
| 16 CPPFLAGS = -DVERSION=\"${VERSION}\" | |
| 17 CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} | |
| 18 LDFLAGS = -g ${LIBS} | |
| 19 | |
| 20 # Solaris | |
| 21 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" | |
| 22 #LDFLAGS = ${LIBS} | |
| 23 | |
| 24 # compiler and linker | |
| 25 CC = cc | |
| 26 |