[padb] r369 committed - First cut at using automake to build padb, it's early days with...

padb at googlecode.com padb at googlecode.com
Mon Dec 21 22:19:21 GMT 2009


Revision: 369
Author: apittman
Date: Mon Dec 21 14:19:11 2009
Log: First cut at using automake to build padb, it's early days with
code yet but a basic make/install/dist is all working.  More
attention is needed to install the config file and some code
changes to padb itself are needed as well to cope with updated
paths.

http://code.google.com/p/padb/source/detail?r=369

Added:
  /trunk/Makefile.am
  /trunk/autogen.sh
  /trunk/configure.in
  /trunk/src/Makefile.am

=======================================
--- /dev/null
+++ /trunk/Makefile.am	Mon Dec 21 14:19:11 2009
@@ -0,0 +1,1 @@
+SUBDIRS = src
=======================================
--- /dev/null
+++ /trunk/autogen.sh	Mon Dec 21 14:19:11 2009
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+set -x
+
+aclocal
+autoconf
+automake -a
=======================================
--- /dev/null
+++ /trunk/configure.in	Mon Dec 21 14:19:11 2009
@@ -0,0 +1,6 @@
+AC_INIT(src/padb)
+AM_INIT_AUTOMAKE(padb,3.1)
+AC_PROG_CC
+AC_PROG_INSTALL
+AM_PROG_CC_C_O
+AC_OUTPUT(Makefile src/Makefile)
=======================================
--- /dev/null
+++ /trunk/src/Makefile.am	Mon Dec 21 14:19:11 2009
@@ -0,0 +1,5 @@
+bin_SCRIPTS = padb
+libexec_PROGRAMS = minfo
+minfo_CFLAGS = -ldl
+minfo_SOURCES = minfo.c mpi_interface.h
+EXTRA_DIST = padb




More information about the padb-devel mailing list