|
a/src/query/Makefile |
|
b/src/query/Makefile |
|
... |
|
... |
2 |
include $(depth)/mk/sysconf
|
2 |
include $(depth)/mk/sysconf
|
3 |
|
3 |
|
4 |
PROGS = xadump recollq #trhist qtry qxtry
|
4 |
PROGS = xadump recollq #trhist qtry qxtry
|
5 |
SRCS = xadump.cpp
|
5 |
SRCS = xadump.cpp
|
6 |
|
6 |
|
7 |
all: depend librecoll $(PROGS)
|
7 |
all: wasaparse.tab.cpp depend librecoll $(PROGS)
|
8 |
|
8 |
|
|
|
9 |
wasaparse.tab.cpp : wasaparse.y
|
|
|
10 |
bison wasaparse.y
|
|
|
11 |
mv -f wasaparse.tab.c wasaparse.tab.cpp
|
|
|
12 |
|
9 |
XADUMP_OBJS= xadump.o
|
13 |
XADUMP_OBJS= xadump.o
|
10 |
xadump : $(XADUMP_OBJS)
|
14 |
xadump : $(XADUMP_OBJS)
|
11 |
$(CXX) $(ALL_CXXFLAGS) -o xadump $(XADUMP_OBJS) \
|
15 |
$(CXX) $(ALL_CXXFLAGS) -o xadump $(XADUMP_OBJS) \
|
12 |
$(depth)/lib/librecoll.a $(LIBICONV) $(LIBXAPIAN) $(LIBSYS)
|
16 |
$(depth)/lib/librecoll.a $(LIBICONV) $(LIBXAPIAN) $(LIBSYS)
|
13 |
xadump.o : xadump.cpp
|
17 |
xadump.o : xadump.cpp
|
|
... |
|
... |
37 |
-o trwasastrtoq.o wasastringtoquery.cpp
|
41 |
-o trwasastrtoq.o wasastringtoquery.cpp
|
38 |
|
42 |
|
39 |
include $(depth)/mk/commontargets
|
43 |
include $(depth)/mk/commontargets
|
40 |
|
44 |
|
41 |
include alldeps
|
45 |
include alldeps
|
|
|
46 |
|
|
|
47 |
distclean::
|
|
|
48 |
-rm -f location.hh position.hh stack.hh \
|
|
|
49 |
wasaparse.tab.c wasaparse.tab.cpp wasaparse.tab.h
|