thrift/test/php/Makefile
Mark Slee 6f5e2cb3ea Fix relative paths in test dirs
Reviewed By: makefile


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664950 13f79535-47bb-0310-9956-ffa450edef68
2007-01-25 08:01:28 +00:00

26 lines
405 B
Makefile

# Makefile for Thrift test project.
#
# Author:
# Mark Slee <mcslee@facebook.com>
# Default target is everything
target: all
# Tools
THRIFT = ../../compiler/cpp/thrift
all: normal inline
normal: stubs
inline: stubs-inline
stubs: ../ThriftTest.thrift
$(THRIFT) --php ../ThriftTest.thrift
stubs-inline: ../ThriftTest.thrift
$(THRIFT) --phpi ../ThriftTest.thrift
clean:
rm -fr gen-php gen-phpi