dwm/config.mk

32 lines
653 B
Makefile
Raw Normal View History

2006-08-02 12:13:32 +03:00
# dwm version
2008-08-02 21:12:15 +03:00
VERSION = 5.2
2006-08-02 12:13:32 +03:00
# Customize below to fit your system
2006-07-10 17:38:18 +03:00
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
2008-05-19 17:36:45 +03:00
# Xinerama, comment if you don't want it
XINERAMALIBS = -L${X11LIB} -lXinerama
XINERAMAFLAGS = -DXINERAMA
2006-07-10 17:38:18 +03:00
# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
2006-07-10 17:38:18 +03:00
2006-08-01 13:32:33 +03:00
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
2008-06-11 11:12:06 +03:00
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
2006-07-13 02:55:54 +03:00
2006-12-18 15:39:34 +02:00
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
2006-08-14 09:43:19 +03:00
# compiler and linker
2006-07-10 17:38:18 +03:00
CC = cc