[padb] r368 committed - Rename Makefile to be Makefile-simple to make way for a new auto-conf...

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


Revision: 368
Author: apittman
Date: Mon Dec 21 14:12:41 2009
Log: Rename Makefile to be Makefile-simple to make way for a new auto-conf
generated makefile.  Hopefully soon I can delete this file completly
but for now leave it lying around so that it can be invoked with make -f

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

Added:
  /trunk/src/Makefile-simple
Deleted:
  /trunk/src/Makefile

=======================================
--- /dev/null
+++ /trunk/src/Makefile-simple	Mon Dec 21 14:12:41 2009
@@ -0,0 +1,42 @@
+
+INSTALL_DIR=/usr/local/
+CONFIG_DIR=/etc
+VERSION=3.0-rc1
+CC=gcc
+CFLAGS=-Wall -g
+
+FILES = Makefile minfo.c mpi_interface.h padb
+
+minfo.x: minfo.c mpi_interface.h
+	$(CC) minfo.c -o minfo.x -ldl $(CFLAGS)
+
+install: minfo.x
+	/bin/mkdir -p ${INSTALL_DIR}/bin
+	/bin/cp minfo.x ${INSTALL_DIR}/bin/
+	/bin/cp padb ${INSTALL_DIR}/bin/
+
+make config_install:
+	/bin/mkdir -p ${CONFIG_DIR}
+	/bin/cp padb.conf ${CONFIG_DIR}/
+
+clean:
+	/bin/rm -f minfo.x
+
+tarfile:
+	/bin/rm -f padb-${VERSION}.tgz
+	/bin/rm -rf padb-${VERSION}
+	mkdir padb-${VERSION}
+	/bin/cp ${FILES} padb-${VERSION}
+	svnversion > padb-${VERSION}/svnversion
+	tar -czf padb-${VERSION}.tgz padb-${VERSION}
+
+tidy:
+	perltidy -b -ce -w -se padb
+
+pc:	padb
+	perlcritic --brutal --verbose "%l: (%s) %m\n" padb > .pc.tmp || true
+	/bin/mv .pc.tmp pc
+
+report: pc
+	./report.pl pc | tee report
+
=======================================
--- /trunk/src/Makefile	Wed Oct 28 15:31:42 2009
+++ /dev/null
@@ -1,42 +0,0 @@
-
-INSTALL_DIR=/usr/local/
-CONFIG_DIR=/etc
-VERSION=3.0-rc1
-CC=gcc
-CFLAGS=-Wall -g
-
-FILES = Makefile minfo.c mpi_interface.h padb
-
-minfo.x: minfo.c mpi_interface.h
-	$(CC) minfo.c -o minfo.x -ldl $(CFLAGS)
-
-install: minfo.x
-	/bin/mkdir -p ${INSTALL_DIR}/bin
-	/bin/cp minfo.x ${INSTALL_DIR}/bin/
-	/bin/cp padb ${INSTALL_DIR}/bin/
-
-make config_install:
-	/bin/mkdir -p ${CONFIG_DIR}
-	/bin/cp padb.conf ${CONFIG_DIR}/
-
-clean:
-	/bin/rm -f minfo.x
-
-tarfile:
-	/bin/rm -f padb-${VERSION}.tgz
-	/bin/rm -rf padb-${VERSION}
-	mkdir padb-${VERSION}
-	/bin/cp ${FILES} padb-${VERSION}
-	svnversion > padb-${VERSION}/svnversion
-	tar -czf padb-${VERSION}.tgz padb-${VERSION}
-
-tidy:
-	perltidy -b -ce -w -se padb
-
-pc:	padb
-	perlcritic --brutal --verbose "%l: (%s) %m\n" padb > .pc.tmp || true
-	/bin/mv .pc.tmp pc
-
-report: pc
-	./report.pl pc | tee report
-




More information about the padb-devel mailing list