diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-13 12:50:23 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-13 12:50:23 (GMT) |
commit | 548083b2ea865474915fc8a9ddd361e997585a02 (patch) | |
tree | f3766c1f5d8f8ea1b2b721a5792e4fb4daf1cf68 /lib/Makefile.am | |
parent | 6b9cc76d0a27631fbab19a31ab8bd46e143b7580 (diff) | |
download | monitoring-plugins-548083b2ea865474915fc8a9ddd361e997585a02.tar.gz |
Move new util_* functions to lib/
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1451 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 9a8991e..0f40bf1 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am | |||
@@ -1,5 +1,7 @@ | |||
1 | ## Process this file with automake to produce Makefile.in | 1 | ## Process this file with automake to produce Makefile.in |
2 | 2 | ||
3 | SUBDIRS = tests | ||
4 | |||
3 | noinst_LIBRARIES = libcoreutils.a libnagiosplug.a | 5 | noinst_LIBRARIES = libcoreutils.a libnagiosplug.a |
4 | 6 | ||
5 | # Will auto pick up fsusage.c mountlist.c | 7 | # Will auto pick up fsusage.c mountlist.c |
@@ -39,13 +41,16 @@ other_coreutils_files = \ | |||
39 | libcoreutils_a_LIBADD = $(LIBOBJS) | 41 | libcoreutils_a_LIBADD = $(LIBOBJS) |
40 | libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD) | 42 | libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD) |
41 | 43 | ||
42 | libnagiosplug_a_SOURCES = snprintf.c | 44 | libnagiosplug_a_SOURCES = snprintf.c utils_base.c utils_disk.c |
43 | 45 | ||
44 | INCLUDES = -I$(srcdir) -I$(top_srcdir)/intl | 46 | INCLUDES = -I$(srcdir) -I$(top_srcdir)/intl -I$(top_srcdir)/plugins |
45 | 47 | ||
46 | print_coreutil_files: | 48 | print_coreutil_files: |
47 | @echo $(libcoreutils_a_SOURCES) $(other_coreutils_files) $(EXTRA_DIST) | 49 | @echo $(libcoreutils_a_SOURCES) $(other_coreutils_files) $(EXTRA_DIST) |
48 | 50 | ||
51 | test: | ||
52 | cd tests && make test | ||
53 | |||
49 | # Below are from coreutil's lib/Makefile.am | 54 | # Below are from coreutil's lib/Makefile.am |
50 | BUILT_SOURCES = $(STDBOOL_H) | 55 | BUILT_SOURCES = $(STDBOOL_H) |
51 | EXTRA_DIST += stdbool_.h | 56 | EXTRA_DIST += stdbool_.h |