dws

a new direct/dynamic/dri/drm based window system
git clone git://git.suckless.org/dws
Log | Files | Refs | README | LICENSE

config.mk (436B)


      1 # dws version
      2 VERSION = 0.0
      3 
      4 # Customize below to fit your system
      5 
      6 # paths
      7 PREFIX = /usr/local
      8 
      9 # includes and libs
     10 INCS = -I. -I/usr/include -I/usr/include/linux
     11 LIBS = -L/usr/lib -lc
     12 
     13 # flags
     14 CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
     15 CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
     16 LDFLAGS = -s ${LIBS}
     17 
     18 # Solaris
     19 #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
     20 #LDFLAGS = ${LIBS}
     21 
     22 # compiler and linker
     23 CC = cc