| David Ostrovsky | f3653d3 | 2012-04-14 00:30:19 +0200 | [diff] [blame] | 1 | # -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*- |
| 2 | # |
| 3 | # Version: MPL 1.1 / GPLv3+ / LGPLv3+ |
| 4 | # |
| 5 | # The contents of this file are subject to the Mozilla Public License Version |
| 6 | # 1.1 (the "License"); you may not use this file except in compliance with |
| 7 | # the License or as specified alternatively below. You may obtain a copy of |
| 8 | # the License at http://www.mozilla.org/MPL/ |
| 9 | # |
| 10 | # Software distributed under the License is distributed on an "AS IS" basis, |
| 11 | # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| 12 | # for the specific language governing rights and limitations under the |
| 13 | # License. |
| 14 | # |
| 15 | # Major Contributor(s): |
| 16 | # Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer) |
| 17 | # |
| 18 | # All Rights Reserved. |
| 19 | # |
| 20 | # For minor contributions see the git repository. |
| 21 | # |
| 22 | # Alternatively, the contents of this file may be used under the terms of |
| 23 | # either the GNU General Public License Version 3 or later (the "GPLv3+"), or |
| 24 | # the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), |
| 25 | # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable |
| 26 | # instead of those above. |
| 27 | |
| 28 | $(eval $(call gb_StaticLibrary_StaticLibrary,codemaker)) |
| 29 | |
| Peter Foley | e1f742a | 2012-11-12 18:37:10 -0500 | [diff] [blame] | 30 | $(eval $(call gb_StaticLibrary_use_external,codemaker,boost_headers)) |
| Michael Meeks | dcb921b | 2012-11-13 11:47:42 +0000 | [diff] [blame] | 31 | |
| David Tardon | d40ec00a | 2012-07-30 09:48:00 +0200 | [diff] [blame] | 32 | $(eval $(call gb_StaticLibrary_use_packages,codemaker,\ |
| David Tardon | 8f16dc3 | 2012-09-17 18:47:50 +0200 | [diff] [blame] | 33 | codemaker_inc \ |
| David Tardon | 93a3e81 | 2012-09-30 18:51:11 +0200 | [diff] [blame] | 34 | registry_inc \ |
| David Tardon | d40ec00a | 2012-07-30 09:48:00 +0200 | [diff] [blame] | 35 | sal_generated \ |
| David Tardon | f09e4ae | 2012-10-27 16:57:10 +0200 | [diff] [blame] | 36 | sal_inc \ |
| David Tardon | d40ec00a | 2012-07-30 09:48:00 +0200 | [diff] [blame] | 37 | )) |
| 38 | |
| David Ostrovsky | f3653d3 | 2012-04-14 00:30:19 +0200 | [diff] [blame] | 39 | $(eval $(call gb_StaticLibrary_add_exception_objects,codemaker,\ |
| 40 | codemaker/source/codemaker/dependencies \ |
| 41 | codemaker/source/codemaker/exceptiontree \ |
| 42 | codemaker/source/codemaker/global \ |
| 43 | codemaker/source/codemaker/options \ |
| 44 | codemaker/source/codemaker/typemanager \ |
| 45 | codemaker/source/codemaker/unotype \ |
| 46 | codemaker/source/codemaker/codemaker \ |
| 47 | )) |
| 48 | |
| 49 | # vim: set noet sw=4 ts=4: |