Mark Slee | fc89d39 | 2006-09-04 00:04:39 +0000 | [diff] [blame] | 1 | # Makefile for Thrift test project. |
2 | # | ||||
3 | # Author: | ||||
4 | # Mark Slee <mcslee@facebook.com> | ||||
5 | |||||
6 | # Default target is everything | ||||
7 | target: all | ||||
8 | |||||
9 | # Tools | ||||
Aditya Agarwal | 68db166 | 2006-09-06 00:18:29 +0000 | [diff] [blame] | 10 | THRIFT = ../../compiler/cpp/bin/thrift |
Mark Slee | fc89d39 | 2006-09-04 00:04:39 +0000 | [diff] [blame] | 11 | |
12 | all: stubs | ||||
13 | |||||
14 | stubs: ../ThriftTest.thrift | ||||
15 | $(THRIFT) --py ../ThriftTest.thrift | ||||
16 | |||||
17 | clean: | ||||
18 | rm -fr gen-py |