thrift/test/php/Makefile
2009-02-17 20:28:46 +00:00

26 lines
421 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) --gen php ../ThriftTest.thrift
stubs-inline: ../ThriftTest.thrift
$(THRIFT) --gen php:inlined ../ThriftTest.thrift
clean:
$(RM) -r gen-php gen-phpi