thrift/test/php/Makefile

26 lines
405 B
Makefile
Raw Normal View History

# 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) --phpl ../ThriftTest.thrift
stubs-inline: ../ThriftTest.thrift
$(THRIFT) --phpi ../ThriftTest.thrift
clean:
rm -fr gen-php gen-phpi