summaryrefslogtreecommitdiff
path: root/test/rb/Makefile
blob: 326f7206a664f70383c99e46d0e149281a4577e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Makefile for Thrift test project.
#
# Author:
#   Mark Slee <mcslee@facebook.com>

# Default target is everything
target: all

# Tools
THRIFT = ../../compiler/cpp/thrift

all: stubs tests

stubs: ../ThriftTest.thrift ../SmallTest.thrift
	$(THRIFT) --rb ../ThriftTest.thrift
	$(THRIFT) --rb ../SmallTest.thrift

tests: stubs
	ruby TestSuite.rb

clean:
	$(RM) -r gen-rb