about summary refs log tree commit diff stats
ModeNameSize
-rw-r--r--LICENSE1120log stats plain blame
-rw-r--r--Makefile1183log stats plain blame
-rw-r--r--README904log stats plain blame
-rw-r--r--TODO106log stats plain blame
-rw-r--r--bar.c840log stats plain blame
-rw-r--r--client.c10561log stats plain blame
-rw-r--r--config.mk652log stats plain blame
-rw-r--r--dev.c4197log stats plain blame
-rw-r--r--draw.c3527log stats plain blame
-rw-r--r--dwm.1883log stats plain blame
-rw-r--r--dwm.h3717log stats plain blame
-rw-r--r--dwm.html3447log stats plain blame
-rw-r--r--dwm.png387log stats plain blame
-rw-r--r--event.c4112log stats plain blame
-rw-r--r--main.c6549log stats plain blame
-rw-r--r--util.c1391log stats plain blame
                                       
 
       
                                             
                 

                                                       
 




                                                
                     
       
          
# dwm version
VERSION = 2.9

# Customize below to fit your system

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

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

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

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

# compiler and linker
CC = cc
LD = ${CC}