about summary refs log tree commit diff stats
path: root/dwm.png
Commit message (Expand)AuthorAgeFilesLines
* alternate dwm.pngarg@10ksloc.org2006-07-191-0/+0
* renamed/changedAnselm R. Garbe2006-07-131-0/+0
08-02 11:13:32 +0200 committer arg@10ksloc.org <unknown> 2006-08-02 11:13:32 +0200 applied Sanders patches (numlock2)' href='/acidbong/suckless/dwm/commit/config.mk?id=3af6434085aee75bd90e22aee95419dc0ae0b969'>3af6434 ^
1076f2b

1076f2b




907db0a ^

1d72938 ^
f22d047 ^
1076f2b
907db0a ^

1076f2b
7b5638f ^
907db0a ^



d7e1708 ^
71fd06f ^


71fd06f ^
95766d6 ^
1076f2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
             
                 


                                    

                   




                               

                                        
                          
 
                   

                                        
 
       



                                                                                      
 


                                                
 
                     
       
# dwm version
VERSION = 6.0-tip

# 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} -lX11 ${XINERAMALIBS}

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

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}

# compiler and linker
CC = cc