File: Makefile.am

package info (click to toggle)
pdsh 2.35-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,008 kB
  • sloc: ansic: 12,433; sh: 6,838; makefile: 400; perl: 163
file content (57 lines) | stat: -rw-r--r-- 1,510 bytes parent folder | download | duplicates (3)
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
55
56
57
##****************************************************************************
## $Id$
##****************************************************************************
## Process this file with automake to produce Makefile.in.
##****************************************************************************

include $(top_srcdir)/config/Make-inc.mk

ACLOCAL_AMFLAGS =              -I config
AUTOMAKE_OPTIONS =             foreign dist-bzip2
SUBDIRS =                      src tests doc scripts config

maintainer-clean-local:
	-(cd $(top_srcdir) && rm -rf autom4te.cache)
	-find . -name "Makefile.in" -exec rm {} \;

distclean-local::
	-rm -fr autom4te*.cache autoscan.*
	-rm -rf $(PACKAGE)-*

uninstall-local:
	@rmdir $(DESTDIR)$(pkglibdir); \
	 if [ -d  $(DESTDIR)$(pkglibdir) ]; then \
		echo >&2;\
		echo " Warning: The pdsh module directory $(DESTDIR)$(pkglibdir)" >&2;\
		echo " is not empty after 'make uninstall.' There may be modules" >&2;\
		echo " from a previous invocation of 'make install' that need" >&2;\
		echo " to be removed for a clean uninstall." >&2;\
		echo >&2;\
	 fi


MAINTAINERCLEANFILES = \
    aclocal.m4 \
    config.h.in \
    configure \
    stamp-h \
    stamp-h.in 

EXTRA_DIST = \
    DISCLAIMER.UC \
    DISCLAIMER.LLNS \
    pdsh.spec \
    README.KRB4 \
    README.modules \
    bootstrap 

# coverage

CODE_COVERAGE_IGNORE_PATTERN = \
        "/tests/*" \
        "/pdsh/cbuf.*" \
        "/common/hostlist.*" \
	"/usr/*"

CODE_COVERAGE_LCOV_OPTIONS =
@CODE_COVERAGE_RULES@