xref: /trunk/main/vcl/Module_vcl.mk (revision 75e945be)
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$(eval $(call gb_Module_Module,vcl))
25
26$(eval $(call gb_Module_add_targets,vcl,\
27	Library_vcl \
28	StaticLibrary_vclmain \
29	Package_inc \
30	AllLangResTarget_vcl \
31))
32
33ifeq ($(GUIBASE),unx)
34$(eval $(call gb_Module_add_targets,vcl,\
35	Library_vclplug_gen \
36	Library_vclplug_svp \
37	Library_desktop_detector \
38))
39
40
41ifeq ($(ENABLE_GTK),TRUE)
42$(eval $(call gb_Module_add_targets,vcl,\
43	Library_vclplug_gtk \
44))
45endif
46
47ifeq ($(ENABLE_KDE),TRUE)
48$(eval $(call gb_Module_add_targets,vcl,\
49	Library_vclplug_kde \
50))
51endif
52ifeq ($(ENABLE_KDE4),TRUE)
53$(eval $(call gb_Module_add_targets,vcl,\
54	Library_vclplug_kde4 \
55))
56endif
57endif
58
59ifeq ($(GUIBASE),aqua)
60$(eval $(call gb_Module_add_targets,vcl,\
61	Package_osx \
62))
63endif
64
65ifeq ($(GUIBASE),WIN)
66$(eval $(call gb_Module_add_targets,vcl,\
67	WinResTarget_vcl \
68))
69endif
70
71ifeq ($(GUIBASE),os2)
72$(eval $(call gb_Module_add_targets,vcl,\
73	WinResTarget_vcl \
74))
75endif
76
77# vim: set noet sw=4 ts=4:
78