From: Mark Huang Date: Fri, 27 Oct 2006 15:40:43 +0000 (+0000) Subject: rename output file to plc_api.php X-Git-Tag: pycurl-7_13_1~429 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=49655e66f6bf746d400890c3007afb5ed57b0169;p=plcapi.git rename output file to plc_api.php --- diff --git a/php/.cvsignore b/php/.cvsignore index da15e227..dd89eef5 100644 --- a/php/.cvsignore +++ b/php/.cvsignore @@ -1,2 +1,2 @@ methods.php -plcapi.php +plc_api.php diff --git a/php/Makefile b/php/Makefile index 14cf10d0..660b536c 100644 --- a/php/Makefile +++ b/php/Makefile @@ -4,20 +4,20 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: Makefile,v 1.1 2006/09/06 15:34:41 mlhuang Exp $ +# $Id: Makefile,v 1.1 2006/10/25 20:32:44 mlhuang Exp $ # -all: plcapi.php +all: plc_api.php methods.php: methods.py ../PLC/__init__.py ../PLC/Methods/__init__.py PYTHONPATH=.. python $< | \ sed -e "s/^/ /" > $@ -plcapi.php: header.php methods.php footer.php +plc_api.php: header.php methods.php footer.php sed -e "s/@DATE@/$$(date)/" header.php | \ cat - methods.php footer.php > $@ clean: - rm -f plcapi.php methods.php + rm -f plc_api.php methods.php .PHONY: all clean