config.mk
author Stiletto <blasux@blasux.ru>
Sat, 12 Feb 2011 15:10:08 +0300
changeset 3 38269b62d856
parent 0 56281d90869c
permissions -rw-r--r--
colon fix, scanscript

# Customize below to fit your system

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

# includes and libs
INCS = -I. -I/usr/include
LIBS = -L/usr/lib -lc -lmagic `xapian-config --libs` `pcre-config --libs-cpp`

# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -D_BSD_SOURCE=1
CFLAGS = -g -std=c++0x -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
LDFLAGS = -g ${LIBS}

OBJS = walker.o scan.o

# compiler and linker
CC = cc
CXX = c++