SUBDIRS += test
endif
+SUBDIRS += tutorial
+
dist-hook:
- find $(distdir) -type f \( -iname ".deps" -or -iname ".libs" -or -iname ".gitignore" \
- -or -iname ".DS_Store" -or -iname "._*" \) | xargs rm -rf
+ find $(distdir) -type f \( -iname ".DS_Store" -or -iname "._*" -or -iname ".gitignore" \) | xargs rm -rf
+ find $(distdir) -type d \( -iname ".deps" -or -iname ".libs" \) | xargs rm -rf
find $(distdir) -type d \( -iname ".svn" -or -iname ".git" \) | xargs rm -rf
print-version:
@echo $(VERSION)
EXTRA_DIST = \
- .travis.yml \
- contrib \
- debian \
- doc \
- doap.rdf \
- sonar-project.properties \
- tutorial \
- LICENSE \
- CHANGES \
- NOTICE
+ .travis.yml \
+ contrib \
+ debian \
+ doc \
+ doap.rdf \
+ sonar-project.properties \
+ LICENSE \
+ CHANGES \
+ NOTICE
WINDOWS_DIST = \
compiler.sln \
compiler.vcxproj \
- compiler.vcxproj.filters
+ compiler.vcxproj.filters \
+ README_Windows.txt
EXTRA_DIST = \
$(WINDOWS_DIST)
+++ /dev/null
-#!/bin/bash
-
-# Tests the parser, independently of whether any generators
-# are correct or useful.
-# Currently only tests that valid .thrift files parse cleanly.
-# Doesn't test that correct information is extracted from them.
-
-shopt -s extglob
-
-MY_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-ROOT_DIR=`cd $MY_DIR/../../ && pwd`
-TEST_THRIFT_DIR=${ROOT_DIR}/test
-THRIFT_FILES=`find ${TEST_THRIFT_DIR} -type f -name *.thrift ! -name BrokenConstants.thrift`
-
-OUTPUT_DIR=`mktemp -d -t test_thrift_parser.XXXXX`
-
-PASS=0
-FAIL=0
-for f in ${THRIFT_FILES};
-do
- echo "Parsing ${f}"
- ${MY_DIR}/thrift -o ${OUTPUT_DIR} -nowarn --allow-64bit-consts --gen cpp ${f}
- EXIT_CODE=$?
- if [ ${EXIT_CODE} -eq 0 ]; then
- let PASS=PASS+1
- else
- let FAIL=FAIL+1
- fi
-done
-echo
-echo "${PASS} files parsed correctly. ${FAIL} files failed to parse."
lib/Thrift/Type/TType.php
EXTRA_DIST = \
- src \
lib \
+ src/autoload.php \
+ src/ext/thrift_protocol/config.w32 \
+ src/ext/thrift_protocol/php_thrift_protocol.cpp \
+ src/ext/thrift_protocol/php_thrift_protocol.h \
+ src/Thrift.php \
+ src/TStringUtils.php \
thrift_protocol.ini \
README.apache
DebugProtoTest.thrift \
DenseLinkingTest.thrift \
DocTest.thrift \
+ Include.thrift \
JavaBeansTest.thrift \
ManyOptionals.thrift \
ManyTypedefs.thrift \
SUBDIRS += js
endif
-if WITH_PERL
-#SUBDIRS += perl
-endif
-
-if WITH_PHP
-#SUBDIRS += php
-endif
-
if WITH_PYTHON
SUBDIRS += py
SUBDIRS += py.twisted
SUBDIRS += rb
endif
-if WITH_HASKELL
-#SUBDIRS += hs
-endif
-
if WITH_GO
SUBDIRS += go
endif
#
all-local:
$(top_builddir)/compiler/cpp/thrift --gen html -r $(top_srcdir)/tutorial/tutorial.thrift
-
endif
+
+# Any folders or files not listed above being added to SUBDIR need to be placed here in
+# EXTRA_DIST to be included in the release
+EXTRA_DIST = \
+ csharp \
+ d \
+ delphi \
+ erl \
+ gen-html \
+ hs \
+ ocaml \
+ perl \
+ php \
+ shared.thrift \
+ tutorial.thrift
src/client.go \
src/handler.go \
src/server.go \
- src/main.go
+ src/main.go \
+ server.crt \
+ server.key
+
$(ANT) $(ANT_FLAGS) tutorialserver
tutorialclient: all
- $(ANT) $(ANT_FLAGS) tutorialclient
\ No newline at end of file
+ $(ANT) $(ANT_FLAGS) tutorialclient
+
+EXTRA_DIST = \
+ build.xml \
+ src
tutorialserver: all
$(ANT) $(ANT_FLAGS) tutorialserver
+
+EXTRA_DIST = \
+ build.xml \
+ src \
+ tutorial.html
$(RM) -r gen-*
EXTRA_DIST = \
+ PythonClient.py \
PythonServer.py \
- PythonClient.py
+ PythonServer.tac