summaryrefslogblamecommitdiffstats
path: root/config.mk
blob: 6e1b95fe5963ec82ee85e4358182c3b027092d8f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
               
             









                                    
                                        
                          

                          
                   
                  
                                             

       
                                                                  

                                                           
 
                     
       
# dmenu version
VERSION = 4.2

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# Xinerama, comment if you don't want it
XINERAMALIBS  = -lXinerama
XINERAMAFLAGS = -DXINERAMA

# includes and libs
INCS = -I${X11INC}
LIBS = -L${X11LIB} -ldc -lX11 ${XINERAMALIBS}

# flags
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS  = -s ${LIBS}

# compiler and linker
CC = cc