* configure.ac: Generate vmlog Makefiles.
authoredwin <none@none>
Sat, 21 Apr 2007 16:42:52 +0000 (16:42 +0000)
committeredwin <none@none>
Sat, 21 Apr 2007 16:42:52 +0000 (16:42 +0000)
* contrib/Makefile.am: Added vmlog to SUBDIRS.
* contrib/vmlog/Makefile.am, contrib/vmlog/t/Makefile.am: New files.

configure.ac
contrib/Makefile.am
contrib/vmlog/Makefile.am [new file with mode: 0644]
contrib/vmlog/t/Makefile.am [new file with mode: 0644]

index 3e938956ed1a26e2c00ecb7e6d68fec6e9017130..363ea6e3f17fbf3bbce15ef96276b6422bca7f95 100644 (file)
@@ -22,7 +22,7 @@ dnl along with this program; if not, write to the Free Software
 dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 dnl 02110-1301, USA.
 dnl 
-dnl $Id: configure.ac 7786 2007-04-21 12:37:47Z edwin $
+dnl $Id: configure.ac 7789 2007-04-21 16:42:52Z edwin $
 
 dnl Process this file with autoconf to produce a configure script.
 
@@ -1005,6 +1005,8 @@ AC_CONFIG_FILES([Makefile]
                [contrib/Makefile]
                [contrib/setenvinstalled]
                [contrib/setenvsource]
+               [contrib/vmlog/Makefile]
+               [contrib/vmlog/t/Makefile]
                [doc/Makefile]
                [doc/handbook/Makefile]
                [man/Makefile]
index 382060d2c7b93d4d6e0186fb3ca7d3efc554827b..133d0f90821834e8af9fab0099718c02997d94cd 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 4357 2006-01-22 23:33:38Z twisti $
+## $Id: Makefile.am 7789 2007-04-21 16:42:52Z edwin $
 
 ## Process this file with automake to produce Makefile.in
 
+SUBDIRS = vmlog
+
 noinst_DATA = \
        setenvinstalled.in \
        setenvsource.in
diff --git a/contrib/vmlog/Makefile.am b/contrib/vmlog/Makefile.am
new file mode 100644 (file)
index 0000000..7dfb520
--- /dev/null
@@ -0,0 +1,33 @@
+
+SUBDIRS = t
+
+if ENABLE_VMLOG
+noinst_PROGRAMS = vmlogdump vmlogindex vmlogdiff
+endif
+
+COMMON_SOURCES = \
+       vmlog.c \
+       vmlog.h
+
+vmlogdump_SOURCES = \
+       $(COMMON_SOURCES) \
+       vmlogdump.c
+
+vmlogindex_SOURCES = \
+       $(COMMON_SOURCES) \
+       vmlogdiff.c
+
+vmlogdiff_SOURCES = \
+       $(COMMON_SOURCES) \
+       vmlogdiff.c
+
+EXTRA_DIST = \
+       COPYING \
+       maintain.mk \
+       README \
+       vmlog_cacao.c \
+       vmlog_cacao.h \
+       vmlog_jamvm.c \
+       vmlog_jamvm.h \
+       vmlog_jamvm.patch
+
diff --git a/contrib/vmlog/t/Makefile.am b/contrib/vmlog/t/Makefile.am
new file mode 100644 (file)
index 0000000..d10d05c
--- /dev/null
@@ -0,0 +1,13 @@
+EXTRA_DIST = \
+       concat.c \
+       file.c \
+       hash.c \
+       log.c \
+       memdup.c \
+       opt.c \
+       prolog.h \
+       ring.c \
+       string.c \
+       tags.c \
+       threadhash.c
+