view config.mk @ 760:014c4cb1ae4a aewl-0.1

removed some compiler warnings
author meillo@marmaro.de
date Fri, 30 May 2008 22:36:38 +0200
parents 45f23169563e
children 794a83e74023
line wrap: on
line source

# aewl version
VERSION = 0.1

# 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
DEBUG = -Wall -Wpointer-arith -Wstrict-prototypes -O2 -W -pedantic
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