xref: /aoo42x/main/vcl/Module_vcl.mk (revision 8274110d)
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
41
42ifeq ($(ENABLE_GTK),TRUE)
43$(eval $(call gb_Module_add_targets,vcl,\
44	Library_vclplug_gtk \
45))
46endif
47
48ifeq ($(ENABLE_KDE),TRUE)
49$(eval $(call gb_Module_add_targets,vcl,\
50	Library_vclplug_kde \
51))
52endif
53ifeq ($(ENABLE_KDE4),TRUE)
54$(eval $(call gb_Module_add_targets,vcl,\
55	Library_vclplug_kde4 \
56))
57endif
58endif
59
60ifeq ($(GUIBASE),aqua)
61$(eval $(call gb_Module_add_targets,vcl,\
62    Package_osx \
63))
64endif
65
66ifeq ($(GUIBASE),WIN)
67$(eval $(call gb_Module_add_targets,vcl,\
68    WinResTarget_vcl \
69))
70endif
71
72ifeq ($(GUIBASE),os2)
73$(eval $(call gb_Module_add_targets,vcl,\
74    WinResTarget_vcl \
75))
76endif
77
78# vim: set noet sw=4 ts=4:
79