2009-02-01 04:47:30 +00:00
|
|
|
SUBDIRS = test
|
|
|
|
|
|
|
|
Makefile-perl.mk : Makefile.PL
|
2009-03-02 23:29:54 +00:00
|
|
|
$(PERL) Makefile.PL MAKEFILE=Makefile-perl.mk INSTALLDIRS=$(INSTALLDIRS)
|
2009-02-01 04:47:30 +00:00
|
|
|
|
|
|
|
all-local: Makefile-perl.mk
|
|
|
|
$(MAKE) -f Makefile-perl.mk
|
|
|
|
find blib -name 'Makefile*' -exec rm -f {} \;
|
|
|
|
|
|
|
|
check-local:
|
|
|
|
$(PERL) -Iblib/lib -I@abs_srcdir@ -I@builddir@/test/gen-perl \
|
|
|
|
@abs_srcdir@/test.pl @abs_srcdir@/test/*.t
|
|
|
|
|
|
|
|
install-exec-local: Makefile-perl.mk
|
|
|
|
$(MAKE) -f Makefile-perl.mk install DESTDIR=$(DESTDIR)/
|
|
|
|
|
2009-02-11 01:11:54 +00:00
|
|
|
clean-local:
|
|
|
|
if test -f Makefile-perl.mk ; then \
|
|
|
|
$(MAKE) -f Makefile-perl.mk clean ; \
|
|
|
|
fi
|
2009-02-01 04:47:30 +00:00
|
|
|
rm -f Makefile-perl.mk.old
|
|
|
|
|
|
|
|
EXTRA_DIST = MANIFEST \
|
|
|
|
Makefile.PL \
|
|
|
|
test.pl \
|
|
|
|
lib/Thrift.pm \
|
|
|
|
lib/Thrift.pm \
|
|
|
|
lib/Thrift/BinaryProtocol.pm \
|
|
|
|
lib/Thrift/BufferedTransport.pm \
|
|
|
|
lib/Thrift/FramedTransport.pm \
|
|
|
|
lib/Thrift/HttpClient.pm \
|
|
|
|
lib/Thrift/MemoryBuffer.pm \
|
|
|
|
lib/Thrift/Protocol.pm \
|
|
|
|
lib/Thrift/Socket.pm \
|
|
|
|
lib/Thrift/Transport.pm
|