|
a/src/utils/Makefile |
|
b/src/utils/Makefile |
1 |
depth = ..
|
1 |
depth = ..
|
2 |
include $(depth)/mk/sysconf
|
2 |
include $(depth)/mk/sysconf
|
3 |
|
3 |
|
4 |
PROGS = trecrontab
|
4 |
PROGS = pxattr trecrontab \
|
5 |
#trnetcon trcopyfile trcircache trmd5 trreadfile trfileudi \
|
5 |
trnetcon trcopyfile trcircache trmd5 trreadfile trfileudi \
|
6 |
#trconftree wipedir smallut trfstreewalk trpathut transcode trbase64 \
|
6 |
trconftree wipedir smallut trfstreewalk trpathut transcode trbase64 \
|
7 |
#trmimeparse trexecmd utf8iter idfile
|
7 |
trmimeparse trexecmd utf8iter idfile
|
8 |
|
8 |
|
9 |
all: librecoll $(PROGS)
|
9 |
all: librecoll pxattr
|
|
|
10 |
|
|
|
11 |
PXATTROBJS = trpxattr.o pxattr.o
|
|
|
12 |
pxattr: $(PXATTROBJS)
|
|
|
13 |
$(CXX) -o pxattr $(PXATTROBJS)
|
|
|
14 |
trpxattr.o : pxattr.cpp
|
|
|
15 |
$(CXX) -c $(CXXFLAGS) -DTEST_PXATTR -o $@ pxattr.cpp
|
10 |
|
16 |
|
11 |
ECRONTAB_OBJS= trecrontab.o
|
17 |
ECRONTAB_OBJS= trecrontab.o
|
12 |
trecrontab : $(ECRONTAB_OBJS)
|
18 |
trecrontab : $(ECRONTAB_OBJS)
|
13 |
$(CXX) -o trecrontab $(ECRONTAB_OBJS) \
|
19 |
$(CXX) -o trecrontab $(ECRONTAB_OBJS) \
|
14 |
$(LIBRECOLL) $(LIBICONV) $(LIBSYS)
|
20 |
$(LIBRECOLL) $(LIBICONV) $(LIBSYS)
|