dwm

Simple dynamic window manager for X
git clone https://git.sinitax.com/suckless/dwm
Log | Files | Refs | README | LICENSE | sfeed.txt

config.mk (954B)


      1# dwm version
      2VERSION = 6.5
      3
      4# Customize below to fit your system
      5
      6# paths
      7PREFIX = /usr/local
      8MANPREFIX = ${PREFIX}/share/man
      9
     10X11INC = /usr/X11R6/include
     11X11LIB = /usr/X11R6/lib
     12
     13# Xinerama, comment if you don't want it
     14XINERAMALIBS  = -lXinerama
     15XINERAMAFLAGS = -DXINERAMA
     16
     17# freetype
     18FREETYPELIBS = -lfontconfig -lXft
     19FREETYPEINC = /usr/include/freetype2
     20# OpenBSD (uncomment)
     21#FREETYPEINC = ${X11INC}/freetype2
     22#MANPREFIX = ${PREFIX}/man
     23
     24# includes and libs
     25INCS = -I${X11INC} -I${FREETYPEINC}
     26LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
     27
     28# flags
     29CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
     30#CFLAGS   = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
     31CFLAGS   = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
     32LDFLAGS  = ${LIBS}
     33
     34# Solaris
     35#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
     36#LDFLAGS = ${LIBS}
     37
     38# compiler and linker
     39CC = cc