config.mk - seturgent - set urgency hints for X applications
 (HTM) git clone git://git.codemadness.org/seturgent
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       config.mk (624B)
       ---
            1 # seturgent version
            2 VERSION = 1.5
            3 
            4 # Customize below to fit your system
            5 
            6 # paths
            7 PREFIX = /usr/local
            8 MANPREFIX = ${PREFIX}/man
            9 
           10 X11INC = /usr/X11R6/include
           11 X11LIB = /usr/X11R6/lib
           12 
           13 # includes and libs
           14 INCS = -I. -I/usr/include -I${X11INC}
           15 LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
           16 
           17 # flags
           18 CPPFLAGS = -DVERSION=\"${VERSION}\"
           19 CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os ${INCS} ${CPPFLAGS}
           20 LDFLAGS = -s ${LIBS}
           21 # debug flags
           22 #CFLAGS = -std=c99 -pedantic -g -Wall -Wextra -O0 ${INCS} ${CPPFLAGS}
           23 #LDFLAGS = ${LIBS}
           24 
           25 # Solaris
           26 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
           27 #LDFLAGS = ${LIBS}
           28 
           29 # compiler and linker
           30 CC = cc