view config.mk @ 785:5fa2cf6026e8

Reordered lines in config.h; removed 3s delay for shutdown.
author markus schnalke <meillo@marmaro.de>
date Sat, 17 Mar 2012 19:10:42 +0100
parents 49a283c22ef4
children
line wrap: on
line source

# aewl version
VERSION = 0.2

# Customize below to fit your system

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

X11INC = /usr/include/X11
X11LIB = /usr/lib

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

# flags
#DEBUG = -Wall -Wpointer-arith -Wstrict-prototypes -O2 -W
CFLAGS =  ${INCS} -DVERSION=\"${VERSION}\" ${DEBUG}
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