summaryrefslogtreecommitdiffstats
path: root/liblog/Makefile.am
diff options
context:
space:
mode:
authorSam Varshavchik2013-08-19 16:39:41 -0400
committerSam Varshavchik2013-08-25 14:43:51 -0400
commit9c45d9ad13fdf439d44d7443ae75da15ea0223ed (patch)
tree7a81a04cb51efb078ee350859a64be2ebc6b8813 /liblog/Makefile.am
parenta9520698b770168d1f33d6301463bb70a19655ec (diff)
downloadcourier-libs-9c45d9ad13fdf439d44d7443ae75da15ea0223ed.tar.bz2
Initial checkin
Imported from subversion report, converted to git. Updated all paths in scripts and makefiles, reflecting the new directory hierarchy.
Diffstat (limited to 'liblog/Makefile.am')
-rw-r--r--liblog/Makefile.am23
1 files changed, 23 insertions, 0 deletions
diff --git a/liblog/Makefile.am b/liblog/Makefile.am
new file mode 100644
index 0000000..dfec2c3
--- /dev/null
+++ b/liblog/Makefile.am
@@ -0,0 +1,23 @@
+#
+# Copyright 2004-2007 Double Precision, Inc. See COPYING for
+# distribution information.
+
+sbin_PROGRAMS=courierlogger
+
+BUILT_SOURCES=courierlogger.html courierlogger.1
+man_MANS=courierlogger.1
+
+EXTRA_DIST=$(BUILT_SOURCES)
+
+courierlogger_SOURCES=logger.c
+courierlogger_DEPENDENCIES=../liblock/liblock.la ../numlib/libnumlib.la
+courierlogger_LDADD=../liblock/liblock.la ../numlib/libnumlib.la
+courierlogger_LDFLAGS=-static
+
+if HAVE_SGML
+courierlogger.html: courierlogger.sgml ../docbook/sgml2html
+ ../docbook/sgml2html courierlogger.sgml courierlogger.html
+
+courierlogger.1: courierlogger.sgml ../docbook/sgml2html
+ ../docbook/sgml2man courierlogger.sgml courierlogger.1
+endif