------------------------------------------------------------------------------ -- -- -- OCARINA COMPONENTS -- -- -- -- O C A R I N A . B A C K E N D S -- -- -- -- P r o j e c t -- -- -- -- Copyright (C) 2007-2009 Telecom ParisTech, 2010-2017 ESA & ISAE. -- -- -- -- Ocarina is free software; you can redistribute it and/or modify under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. Ocarina is distributed in the hope that it will be useful, but -- -- WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- . -- -- -- -- Ocarina is maintained by the TASTE project -- -- (taste-users@lists.tuxfamily.org) -- -- -- ------------------------------------------------------------------------------ with "ocarina"; with "ocarina-core"; project Ocarina.Backends is Src_Dir := Ocarina.Top_Src_Dir & "/backends"; Build_Dir := Ocarina.Top_Build_Dir & "/backends"; for Source_Dirs use (Src_Dir, Build_Dir, Src_Dir & "/aadl_xml", Src_Dir & "/alloy", Src_Dir & "/arinc653_conf", Src_Dir & "/ast_ada", Src_Dir & "/ast_asn1", Src_Dir & "/ast_c", Src_Dir & "/ast_xml", Src_Dir & "/bound-t", Src_Dir & "/cheddar", Src_Dir & "/connection_matrix", Src_Dir & "/deos_conf", Src_Dir & "/functions_matrix", Src_Dir & "/lnt", Src_Dir & "/mast", Src_Dir & "/petri_nets", Src_Dir & "/po_hi_ada", Src_Dir & "/po_hi_c", Src_Dir & "/stats", Src_Dir & "/vxwork653_conf", Src_Dir & "/xtratum_conf" ); for Object_Dir use Build_Dir & "/objects"; for Library_Dir use Build_Dir & "/libs"; for Library_Name use "ocarina-backends"; for Library_Kind use Ocarina.Lib_Type; package Compiler renames Ocarina.Compiler; package Binder renames Ocarina.Binder; package Builder renames Ocarina.Builder; end Ocarina.Backends;