dwm/config.mk

34 lines
734 B
Makefile
Raw Normal View History

2006-08-02 12:13:32 +03:00
# dwm version
2009-10-31 13:45:56 +02:00
VERSION = 5.8
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
# Xinerama, un-comment if you want it
2009-07-01 21:15:20 +03:00
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}
2009-09-22 22:34:03 +03:00
#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
#LDFLAGS = -g ${LIBS}
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