xref: /aoo4110/main/vcl/Module_vcl.mk (revision b1cdbd2c)
1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24
25$(eval $(call gb_Module_Module,vcl))
26
27$(eval $(call gb_Module_add_targets,vcl,\
28	Library_vcl \
29    StaticLibrary_vclmain \
30	Package_inc \
31    AllLangResTarget_vcl \
32))
33
34ifeq ($(GUIBASE),unx)
35$(eval $(call gb_Module_add_targets,vcl,\
36	Library_vclplug_gen \
37	Library_vclplug_svp \
38    Library_desktop_detector \
39))
40
41ifneq ($(ENABLE_GTK),)
42$(eval $(call gb_Module_add_targets,vcl,\
43	Library_vclplug_gtk \
44))
45endif
46ifneq ($(ENABLE_KDE),)
47$(eval $(call gb_Module_add_targets,vcl,\
48	Library_vclplug_kde \
49))
50endif
51ifneq ($(ENABLE_KDE4),)
52$(eval $(call gb_Module_add_targets,vcl,\
53	Library_vclplug_kde4 \
54))
55endif
56endif
57
58ifeq ($(GUIBASE),aqua)
59$(eval $(call gb_Module_add_targets,vcl,\
60    Package_osx \
61))
62endif
63
64ifeq ($(GUIBASE),WIN)
65$(eval $(call gb_Module_add_targets,vcl,\
66    WinResTarget_vcl \
67))
68endif
69
70ifeq ($(GUIBASE),os2)
71$(eval $(call gb_Module_add_targets,vcl,\
72    WinResTarget_vcl \
73))
74endif
75
76# vim: set noet sw=4 ts=4:
77