This commit was generated by cvs2svn to compensate for changes in r467,
[plcapi.git] / php / Makefile
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