-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
54 lines (42 loc) · 1.23 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
## Process this file with automake to produce Makefile.in
## $Id$
SUBDIRS = libdsdc dsdc tst
EXTRA_DIST = setup .cvsignore setup.gnu
CLEANFILES = core *.core *~
MAINTAINERCLEANFILES = \
aclocal.m4 install-sh mkinstalldirs missing depcomp \
configure config.guess config.sub config.h.in \
ltconfig ltmain.sh \
INSTALL COPYING Makefile.in stamp-h.in
BUILT_SOURCES = config.h
DISTCLEANFILES = config.h stamp-auto-h autom4te*.cache
install-exec-local:
-src=$(dsdclinkto); dst=$(dsdclinkfrom); \
rm -f $$dst; \
if test "`dirname $$src`" = "`dirname $$dst`"; then \
ln -s "`basename $$src`" $$dst; \
else \
ln -s $$src $$dst; \
fi
#uninstall-local:
# -rm -f $(DESTDIR)$(pkglibdir) $(DESTDIR)$(pkgincludedir)
# -rmdir $(DESTDIR)$(okwslibdir) $(DESTDIR)$(owksincludedir) \
# $(DESTDIR)$(confdir)
#all-recursive-am: aux-all
#mostlyclean-recursive: aux-mostlyclean
#clean-recursive: aux-clean
#distclean-recursive: aux-distclean
#maintainer-clean-recursive: aux-maintainer-clean
##
## New aclocal (1.10+) is asking for this...
##
ACLOCAL_AMFLAGS = -I m4
.PHONY: rpcclean tameclean
rpcclean:
for dir in libdsdc; do \
(cd $$dir && $(MAKE) rpcclean); \
done
tameclean:
for dir in $(SUBDIRS) ; do \
(cd $$dir && $(MAKE) tameclean); \
done