rename output file to plc_api.php
authorMark Huang <mlhuang@cs.princeton.edu>
Fri, 27 Oct 2006 15:40:43 +0000 (15:40 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Fri, 27 Oct 2006 15:40:43 +0000 (15:40 +0000)
php/.cvsignore
php/Makefile

index da15e22..dd89eef 100644 (file)
@@ -1,2 +1,2 @@
 methods.php
-plcapi.php
+plc_api.php
index 14cf10d..660b536 100644 (file)
@@ -4,20 +4,20 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # 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