File: Makefile.am

package info (click to toggle)
nagios-plugins 1.4-6sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,892 kB
  • ctags: 3,369
  • sloc: ansic: 29,379; perl: 12,117; sh: 5,836; makefile: 540; python: 444; yacc: 316; awk: 46; sed: 16
file content (47 lines) | stat: -rw-r--r-- 1,066 bytes parent folder | download
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
## Process this file with automake to produce Makefile.in

noinst_LIBRARIES = libcoreutils.a libnagiosplug.a

# Will auto pick up fsusage.c mountlist.c
libcoreutils_a_SOURCES = \
  cloexec.c cloexec.h \
  exit.h \
  exitfail.c exitfail.h \
  fsusage.h \
  full-read.c full-read.h \
  full-write.c full-write.h \
  getopt.c getopt.h getopt1.c \
  gettext.h \
  mountlist.h \
  safe-read.c safe-read.h \
  safe-write.c safe-write.h \
  unlocked-io.h \
  xalloc.h \
  xmalloc.c \
  xstrdup.c

other_coreutils_files = \
  error.c error.h \
  fsusage.c \
  getloadaavg.c \
  malloc.c \
  mountlist.c \
  realloc.c \
  stdbool_.h \
  strtod.c

libcoreutils_a_LIBADD = $(LIBOBJS)
libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD)

libnagiosplug_a_SOURCES = snprintf.c

INCLUDES = -I$(srcdir) -I$(top_srcdir)/intl

BUILT_SOURCES = $(STDBOOL_H)
EXTRA_DIST = stdbool_.h
MOSTLYCLEANFILES = stdbool.h stdbool.ht
# Create stdbool.h on systems that lack a working one.
stdbool.h: stdbool_.h
	sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' $(srcdir)/stdbool_.h > $@t
	mv $@t $@