X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=php%2FMakefile;fp=php%2FMakefile;h=0000000000000000000000000000000000000000;hb=598e1e840b55262fd40c6d1700148e4f0b508065;hp=fe8842ae17c22f98b1cf32d1dbd80d98c3f2cbfa;hpb=fabf020a2ee703a4adf22c213759840f2a55261a;p=plcapi.git diff --git a/php/Makefile b/php/Makefile deleted file mode 100644 index fe8842a..0000000 --- a/php/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# -# (Re)builds PHP API. PHP classes must be defined in a single file. -# -# Mark Huang -# Copyright (C) 2006 The Trustees of Princeton University -# -# $Id$ -# $URL$ -# - -all: plc_api.php - -methods.php: methods.py ../PLC/__init__.py ../PLC/Methods/__init__.py - PYTHONPATH=.. python $< > $@ - # Indent all lines by a couple of spaces - sed -i -e "s/^/ /" $@ - -plc_api.php: header.php 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 - -.PHONY: all clean