summaryrefslogtreecommitdiffstats
path: root/modules/lockman/cutil/Makefile
blob: 84341f9c34e9d30d0c6387ab5973ca477b6c6c38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
INCLUDES += -I/usr/include/sword -DHAVESWORD
LIBS += -lsword -lz -lsword -lz
#comment this out if you didn't compile sword with lucene support
LIBS += -lclucene
#comment these out if you didn't compile sword with ICU support
LIBS += -licui18n -licuuc -licudata -lpthread -licuio

all: lockosis

lockosis.o: lockosis.cpp
	g++ -g -c ${INCLUDES} lockosis.cpp 
lockosis: lockosis.o
	g++ -g -o lockosis lockosis.o ${LIBS} ${LIBS}
clean:
	rm lockosis lockosis.o