blob: 49ec26e3b59960d088700304c78fe7bbf2cad3c7 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
Todd Lipcon53ae9f32009-12-07 00:42:38 +000019#
20# Contains some contributions under the Thrift Software License.
21# Please see doc/old-thrift-license.txt in the Thrift distribution for
22# details.
David Reissea2cba82009-03-30 21:35:00 +000023
Mark Sleeeb0d0242007-01-25 07:58:55 +000024AM_YFLAGS = -d
Jake Farrell69935692011-08-29 18:22:11 +000025LIBS =
Jens Geyer86777192015-07-25 15:59:46 +020026BUILT_SOURCES = src/thrifty.cc
Mark Sleeeb0d0242007-01-25 07:58:55 +000027
28bin_PROGRAMS = thrift
29
Christian Lavoieaf65f1b2010-11-24 21:58:05 +000030noinst_LIBRARIES = libparse.a
31
Mark Sleeeb0d0242007-01-25 07:58:55 +000032thrift_OBJDIR = obj
33
Christian Lavoieaf65f1b2010-11-24 21:58:05 +000034thrift_SOURCES = src/main.cc \
Mark Sleeeb0d0242007-01-25 07:58:55 +000035 src/generate/t_generator.cc \
Bryan Duxburyc412a2f2010-08-04 18:51:57 +000036 src/generate/t_generator_registry.h \
Mark Sleeefd37f12007-11-20 05:13:09 +000037 src/globals.h \
38 src/main.h \
David Reiss204420f2008-01-11 20:59:03 +000039 src/platform.h \
jfarrell8fd8c632014-07-10 09:14:51 -040040 src/logging.h \
Ben Craig262cfb42015-07-08 20:37:15 -050041 src/audit/t_audit.cpp \
jfarrellf13e4312015-08-25 00:39:29 -040042 src/audit/t_audit.h \
Mark Sleeefd37f12007-11-20 05:13:09 +000043 src/parse/t_doc.h \
44 src/parse/t_type.h \
45 src/parse/t_base_type.h \
46 src/parse/t_enum.h \
47 src/parse/t_enum_value.h \
48 src/parse/t_typedef.h \
jfarrelle0e83162014-04-08 22:45:01 -040049 src/parse/t_typedef.cc \
Mark Sleeefd37f12007-11-20 05:13:09 +000050 src/parse/t_container.h \
51 src/parse/t_list.h \
52 src/parse/t_set.h \
53 src/parse/t_map.h \
54 src/parse/t_struct.h \
55 src/parse/t_field.h \
56 src/parse/t_service.h \
57 src/parse/t_function.h \
58 src/parse/t_program.h \
59 src/parse/t_scope.h \
60 src/parse/t_const.h \
61 src/parse/t_const_value.h \
David Reiss9e7ba8c2010-10-05 16:39:27 +000062 src/parse/parse.cc \
Mark Sleeefd37f12007-11-20 05:13:09 +000063 src/generate/t_generator.h \
Jake Farrelle0c53162011-11-16 12:58:36 +000064 src/generate/t_oop_generator.h \
Jake Farrell7c7a5e02012-10-11 00:29:11 +000065 src/generate/t_html_generator.h \
Jake Farrelle0c53162011-11-16 12:58:36 +000066 src/windows/config.h \
67 src/windows/version.h
iproctor9a41a0c2007-07-16 21:59:24 +000068
Jake Farrelldec8c542011-09-21 00:15:27 +000069# Specific client generator source
70thrift_SOURCES += src/generate/t_c_glib_generator.cc \
71 src/generate/t_cpp_generator.cc \
72 src/generate/t_java_generator.cc \
Roger Meier1a74d9c2014-10-12 23:35:43 +020073 src/generate/t_json_generator.cc \
Jake Farrelldec8c542011-09-21 00:15:27 +000074 src/generate/t_as3_generator.cc \
Mark Erickson932c4702015-08-29 10:46:51 -050075 src/generate/t_dart_generator.cc \
Jens Geyerbd52f1a2014-07-28 01:25:30 +020076 src/generate/t_haxe_generator.cc \
Jake Farrelldec8c542011-09-21 00:15:27 +000077 src/generate/t_csharp_generator.cc \
78 src/generate/t_py_generator.cc \
79 src/generate/t_rb_generator.cc \
80 src/generate/t_perl_generator.cc \
81 src/generate/t_php_generator.cc \
82 src/generate/t_erl_generator.cc \
83 src/generate/t_cocoa_generator.cc \
Jens Geyer56e5b9b2015-10-09 22:01:55 +020084 src/generate/t_swift_generator.cc \
Jake Farrelldec8c542011-09-21 00:15:27 +000085 src/generate/t_st_generator.cc \
86 src/generate/t_ocaml_generator.cc \
87 src/generate/t_hs_generator.cc \
88 src/generate/t_xsd_generator.cc \
BCGde0b4b52015-12-28 01:15:00 -050089 src/generate/t_xml_generator.cc \
Jake Farrelldec8c542011-09-21 00:15:27 +000090 src/generate/t_html_generator.cc \
91 src/generate/t_js_generator.cc \
92 src/generate/t_javame_generator.cc \
Jake Farrell7ae13e12011-10-18 14:35:26 +000093 src/generate/t_delphi_generator.cc \
Jake Farrellb95b0ff2012-03-22 21:49:10 +000094 src/generate/t_go_generator.cc \
Jens Geyerd7b45792013-05-13 22:11:46 +020095 src/generate/t_gv_generator.cc \
Roger Meier6cf0ffc2014-04-05 00:45:42 +020096 src/generate/t_d_generator.cc \
97 src/generate/t_lua_generator.cc
David Reiss22585732008-02-27 01:55:33 +000098
Christian Lavoieaf65f1b2010-11-24 21:58:05 +000099thrift_CPPFLAGS = -I$(srcdir)/src
Roger Meierec300e32014-10-13 02:13:35 +0200100thrift_CXXFLAGS = -Wall -Wextra -pedantic
Christian Lavoieaf65f1b2010-11-24 21:58:05 +0000101thrift_LDADD = @LEXLIB@ libparse.a
Mark Sleeeb0d0242007-01-25 07:58:55 +0000102
Christian Lavoieaf65f1b2010-11-24 21:58:05 +0000103libparse_a_CPPFLAGS = -I$(srcdir)/src
104libparse_a_CXXFLAGS = -Wall -Wno-sign-compare -Wno-unused
105
106libparse_a_SOURCES = src/thrifty.yy \
107 src/thriftl.ll
Mark Sleeeb0d0242007-01-25 07:58:55 +0000108
Jake Farrelle0c53162011-11-16 12:58:36 +0000109WINDOWS_DIST = \
110 compiler.sln \
111 compiler.vcxproj \
Roger Meierdb372ac2014-06-16 07:32:12 +0200112 compiler.vcxproj.filters
Jake Farrelle0c53162011-11-16 12:58:36 +0000113
114EXTRA_DIST = \
jfarrellf13e4312015-08-25 00:39:29 -0400115 coding_standards.md \
Roger Meierdb372ac2014-06-16 07:32:12 +0200116 README.md \
jfarrell8fd8c632014-07-10 09:14:51 -0400117 CMakeLists.txt \
Jake Farrelle0c53162011-11-16 12:58:36 +0000118 $(WINDOWS_DIST)
David Reissb72d19f2007-09-18 19:46:00 +0000119
Mark Sleeeb0d0242007-01-25 07:58:55 +0000120clean-local:
Jens Geyer79f988c2014-10-03 20:42:54 +0200121 $(RM) thriftl.cc thrifty.cc thrifty.h thrifty.hh version.h windows/version.h
David Reissdd08f6d2008-06-30 20:24:24 +0000122
123src/main.cc: version.h
Konrad Grochowski16a23a62014-11-13 15:33:38 +0100124
125style-local:
126 $(CPPSTYLE_CMD)