blob: 510b2c569b410980ecf0ae2683fd51a21915bd4b [file] [log] [blame]
David Ostrovskyf3653d32012-04-14 00:30:19 +02001# -*- 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 Foleye1f742a2012-11-12 18:37:10 -050030$(eval $(call gb_StaticLibrary_use_external,codemaker,boost_headers))
Michael Meeksdcb921b2012-11-13 11:47:42 +000031
David Tardond40ec00a2012-07-30 09:48:00 +020032$(eval $(call gb_StaticLibrary_use_packages,codemaker,\
David Tardon8f16dc32012-09-17 18:47:50 +020033 codemaker_inc \
David Tardon93a3e812012-09-30 18:51:11 +020034 registry_inc \
David Tardond40ec00a2012-07-30 09:48:00 +020035 sal_generated \
David Tardonf09e4ae2012-10-27 16:57:10 +020036 sal_inc \
David Tardond40ec00a2012-07-30 09:48:00 +020037))
38
David Ostrovskyf3653d32012-04-14 00:30:19 +020039$(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: