wm

My window manager
git clone git://pcardenasb.com/wm
Log | Files | Refs

config.mk (426B)


      1 # pwm version
      2 VERSION = 0.1
      3 
      4 # Customize below to fit your system
      5 
      6 # paths
      7 PREFIX = /usr/local
      8 MANPREFIX = ${PREFIX}/share/man
      9 
     10 # includes and libs
     11 INCS = 
     12 LIBS = -lX11
     13 
     14 # flags
     15 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
     16 CFLAGS   = -g -std=c99 -pedantic -Wall -Wno-deprecated-declarations -O0 ${INCS} ${CPPFLAGS}
     17 LDFLAGS  = ${LIBS}
     18 
     19 # compiler and linker
     20 CC = cc