0
|
1 |
# Customize below to fit your system |
|
2 |
|
|
3 |
# paths |
|
4 |
PREFIX = /usr/local |
|
5 |
MANPREFIX = ${PREFIX}/share/man |
|
6 |
|
|
7 |
# includes and libs |
|
8 |
INCS = -I. -I/usr/include |
|
9 |
LIBS = -L/usr/lib -lc -lmagic `xapian-config --libs` `pcre-config --libs-cpp` |
|
10 |
|
|
11 |
# flags |
|
12 |
CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -D_BSD_SOURCE=1 |
|
13 |
CFLAGS = -g -std=c++0x -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} |
|
14 |
LDFLAGS = -g ${LIBS} |
|
15 |
|
|
16 |
OBJS = walker.o scan.o |
|
17 |
|
|
18 |
# compiler and linker |
|
19 |
CC = cc |
3
|
20 |
CXX = c++ |
|
21 |
|