blob: c6412d89a24a27bd3e9000683c8df0f8170b367c [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001## Process this file with automake to produce Makefile.in
2
3ACLOCAL_AMFLAGS = -I m4
4
kenton@google.com7516a692008-09-30 20:55:25 +00005AUTOMAKE_OPTIONS = foreign
6
kenton@google.com37ad00d2009-04-21 21:00:39 +00007# Build . before src so that our all-local and clean-local hooks kicks in at
8# the right time.
9SUBDIRS = . src
10
11# Always include gtest in distributions.
12DIST_SUBDIRS = $(subdirs) src
13
14# Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS
15# because then "make check" would also build and run all of gtest's own tests,
16# which takes a lot of time and is generally not useful to us. Also, we don't
17# want "make install" to recurse into gtest since we don't want to overwrite
18# the installed version of gtest if there is one.
19check-local:
20 @echo "Making lib/libgtest.a lib/libgtest_main.a in gtest"
21 @cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
22
23# We would like to clean gtest when "make clean" is invoked. But we have to
24# be careful because clean-local is also invoked during "make distclean", but
25# "make distclean" already recurses into gtest because it's listed among the
26# DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to
27# cd to the directory again and "make clean" it will fail. So, check that the
28# Makefile exists before recursing.
29clean-local:
30 @if test -e gtest/Makefile; then \
31 echo "Making clean in gtest"; \
32 cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \
33 fi
temporal40ee5512008-07-10 02:12:20 +000034
35EXTRA_DIST = \
36 autogen.sh \
37 generate_descriptor_proto.sh \
38 README.txt \
39 INSTALL.txt \
40 COPYING.txt \
41 CONTRIBUTORS.txt \
42 CHANGES.txt \
43 editors/README.txt \
44 editors/proto.vim \
kenton@google.com2cdba5b2009-05-01 21:03:20 +000045 editors/protobuf-mode.el \
temporal40ee5512008-07-10 02:12:20 +000046 vsprojects/config.h \
47 vsprojects/extract_includes.bat \
48 vsprojects/libprotobuf.vcproj \
49 vsprojects/libprotoc.vcproj \
50 vsprojects/protobuf.sln \
51 vsprojects/protoc.vcproj \
52 vsprojects/readme.txt \
53 vsprojects/tests.vcproj \
54 vsprojects/convert2008to2005.sh \
55 examples/README.txt \
56 examples/Makefile \
57 examples/addressbook.proto \
58 examples/add_person.cc \
59 examples/list_people.cc \
60 examples/AddPerson.java \
61 examples/ListPeople.java \
62 examples/add_person.py \
63 examples/list_people.py \
64 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000065 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
66 java/src/main/java/com/google/protobuf/BlockingService.java \
temporal40ee5512008-07-10 02:12:20 +000067 java/src/main/java/com/google/protobuf/ByteString.java \
68 java/src/main/java/com/google/protobuf/CodedInputStream.java \
69 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
70 java/src/main/java/com/google/protobuf/Descriptors.java \
71 java/src/main/java/com/google/protobuf/DynamicMessage.java \
72 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
73 java/src/main/java/com/google/protobuf/FieldSet.java \
74 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
75 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
76 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +000077 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
temporal40ee5512008-07-10 02:12:20 +000078 java/src/main/java/com/google/protobuf/RpcCallback.java \
79 java/src/main/java/com/google/protobuf/RpcChannel.java \
80 java/src/main/java/com/google/protobuf/RpcController.java \
81 java/src/main/java/com/google/protobuf/RpcUtil.java \
82 java/src/main/java/com/google/protobuf/Service.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000083 java/src/main/java/com/google/protobuf/ServiceException.java \
temporal40ee5512008-07-10 02:12:20 +000084 java/src/main/java/com/google/protobuf/TextFormat.java \
85 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
86 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
87 java/src/main/java/com/google/protobuf/WireFormat.java \
88 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
89 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
90 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
91 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
92 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
93 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
94 java/src/test/java/com/google/protobuf/MessageTest.java \
95 java/src/test/java/com/google/protobuf/ServiceTest.java \
96 java/src/test/java/com/google/protobuf/TestUtil.java \
97 java/src/test/java/com/google/protobuf/TextFormatTest.java \
98 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
99 java/src/test/java/com/google/protobuf/WireFormatTest.java \
100 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
101 java/pom.xml \
102 java/README.txt \
103 python/google/protobuf/internal/generator_test.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000104 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000105 python/google/protobuf/internal/decoder.py \
106 python/google/protobuf/internal/decoder_test.py \
107 python/google/protobuf/internal/descriptor_test.py \
108 python/google/protobuf/internal/encoder.py \
109 python/google/protobuf/internal/encoder_test.py \
110 python/google/protobuf/internal/input_stream.py \
111 python/google/protobuf/internal/input_stream_test.py \
112 python/google/protobuf/internal/message_listener.py \
113 python/google/protobuf/internal/more_extensions.proto \
114 python/google/protobuf/internal/more_messages.proto \
115 python/google/protobuf/internal/output_stream.py \
116 python/google/protobuf/internal/output_stream_test.py \
117 python/google/protobuf/internal/reflection_test.py \
118 python/google/protobuf/internal/service_reflection_test.py \
119 python/google/protobuf/internal/test_util.py \
120 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000121 python/google/protobuf/internal/type_checkers.py \
temporal40ee5512008-07-10 02:12:20 +0000122 python/google/protobuf/internal/wire_format.py \
123 python/google/protobuf/internal/wire_format_test.py \
124 python/google/protobuf/internal/__init__.py \
125 python/google/protobuf/descriptor.py \
126 python/google/protobuf/message.py \
127 python/google/protobuf/reflection.py \
128 python/google/protobuf/service.py \
129 python/google/protobuf/service_reflection.py \
130 python/google/protobuf/text_format.py \
131 python/google/protobuf/__init__.py \
132 python/google/__init__.py \
133 python/ez_setup.py \
134 python/setup.py \
135 python/mox.py \
136 python/stubout.py \
137 python/README.txt
138
139# Deletes all the files generated by autogen.sh.
140MAINTAINERCLEANFILES = \
141 aclocal.m4 \
142 config.guess \
143 config.sub \
144 configure \
145 depcomp \
146 install-sh \
147 ltmain.sh \
148 Makefile.in \
149 missing \
150 mkinstalldirs \
151 config.h.in \
152 stamp.h.in