'make' will now just plain make again without proceeding to install.
authorsboyette <sboyette@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 17 Aug 2009 00:34:50 +0000 (00:34 +0000)
committersboyette <sboyette@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 17 Aug 2009 00:34:50 +0000 (00:34 +0000)
Added Build to files swept by 'make clean'

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1741 9efc2488-bf62-4759-914b-345cdb29e865

src/perl/Makefile.am

index cd7b88b..8019e8c 100644 (file)
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 
+CLEANFILES = Build
 DISTCLEANFILES = Makefile.in Makefile
 
 all:
-       perl Build.PL || make -s install-perl-fail
+       perl Build.PL || make -s build-perl-fail
+       ./Build || make -s build-perl-fail
+       ./Build test || make -s build-perl-fail
 
-install-perl-fail:
+install:
+       ./Build install
+
+build-perl-fail:
        echo
-       echo ">>> Installation of Perl modules has failed. The most likely"
+       echo ">>> Build/test of Perl modules has failed. The most likely"
        echo ">>> possibility is that a dependency is not pre-installed"
        echo ">>> or that a test has failed."
        echo ">>> See the messages above this one for more information."