diff options
| author | Michael Biebl <biebl@debian.org> | 2010-11-29 00:47:11 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2010-11-29 00:47:11 +0100 |
| commit | 9fae01fa351805b2903e535736e06971bc0b925e (patch) | |
| tree | c19bccf84c9f894e50fae678ba6ee2b2044e2d30 /src/logging/Makefile.am | |
Imported Upstream version 0.8.1 upstream/0.8.1
Diffstat (limited to 'src/logging/Makefile.am')
| -rw-r--r-- | src/logging/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/logging/Makefile.am b/src/logging/Makefile.am new file mode 100644 index 00000000..51a6b25d --- /dev/null +++ b/src/logging/Makefile.am @@ -0,0 +1,15 @@ +noinst_LTLIBRARIES = libnm-logging.la + +libnm_logging_la_SOURCES = \ + nm-logging.c \ + nm-logging.h + +libnm_logging_la_CPPFLAGS = \ + $(GLIB_CFLAGS) \ + -DLIBEXECDIR=\"$(libexecdir)\" \ + -DG_DISABLE_DEPRECATED + +libnm_logging_la_LIBADD = \ + -ldl \ + $(GLIB_LIBS) + |