From bcb79ffb990493dcad7746a81972c2bd985f89ac Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Thu, 4 Jan 2007 16:05:35 +0000 Subject: [PATCH] throw an error if methods.py fails --- php/Makefile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/php/Makefile b/php/Makefile index 660b536..5498951 100644 --- a/php/Makefile +++ b/php/Makefile @@ -4,18 +4,20 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Makefile,v 1.1 2006/10/25 20:32:44 mlhuang Exp $ +# $Id: Makefile,v 1.2 2006/10/27 15:40:37 mlhuang Exp $ # all: plc_api.php methods.php: methods.py ../PLC/__init__.py ../PLC/Methods/__init__.py - PYTHONPATH=.. python $< | \ - sed -e "s/^/ /" > $@ + PYTHONPATH=.. python $< > $@ + # Indent all lines by a couple of spaces + sed -i -e "s/^/ /" $@ plc_api.php: header.php methods.php footer.php - sed -e "s/@DATE@/$$(date)/" header.php | \ - cat - methods.php footer.php > $@ + # Set timestamp + sed -e "s/@DATE@/$$(date)/" header.php > $@ + cat methods.php footer.php >> $@ clean: rm -f plc_api.php methods.php -- 2.43.0