forked from Qihoo360/Atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
21 lines (18 loc) · 546 Bytes
/
Makefile.am
File metadata and controls
21 lines (18 loc) · 546 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SUBDIRS=\
admin \
proxy \
replicant \
debug
# the cli plugin needs readline and we don't have it on all platforms
# cli
EXTRA_DIST=CMakeLists.txt
check-local:
mkdir -p $(top_builddir)/plugins/;
for plugin in $(SUBDIRS); do \
for i in `cat $(top_builddir)/plugins/$$plugin/.libs/lib$$plugin.la | grep '^dlname' | sed "s/.*=//;s/'//g"`; do \
echo $$i; \
ln -fs $(top_builddir)/plugins/$$plugin/.libs/$$i $(top_builddir)/plugins/$$i; \
done; \
done;
clean-local:
## remove left-overs from the check-local hack in the plugings