dwm/config.mk

32 lines
653 B
Makefile
Raw Normal View History

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