xref: /aoo42x/main/rsc/Executable_rsc2.mk (revision 0c9cf815)
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_Executable_Executable,rsc2))
25
26$(eval $(call gb_Executable_add_precompiled_header,rsc2,$(SRCDIR)/rsc/inc/pch/precompiled_rsc))
27
28$(eval $(call gb_Executable_set_include,rsc2,\
29	$$(INCLUDE) \
30	-I$(SRCDIR)/rsc/inc \
31	-I$(SRCDIR)/rsc/inc/pch \
32))
33
34$(eval $(call gb_Executable_add_api,rsc2,\
35	offapi \
36	udkapi \
37))
38
39$(eval $(call gb_Executable_add_linked_libs,rsc2,\
40	i18nisolang1 \
41	sal \
42	tl \
43	vos3 \
44	stl \
45	$(gb_STDLIBS) \
46))
47
48$(eval $(call gb_Executable_add_bison_files,rsc2,\
49	rsc/source/parser/yyrscyacc \
50))
51
52$(eval $(call gb_Executable_add_exception_objects,rsc2,\
53	rsc/source/misc/rsclst \
54	rsc/source/misc/rscdbl \
55	rsc/source/parser/rscpar \
56	rsc/source/parser/rscyacc \
57	rsc/source/parser/rsclex \
58	rsc/source/parser/erscerr \
59	rsc/source/parser/rsckey \
60	rsc/source/parser/rscinit \
61	rsc/source/parser/rscibas \
62	rsc/source/parser/rscdb \
63	rsc/source/parser/rscicpx \
64	rsc/source/prj/gui \
65	rsc/source/res/rscclobj \
66	rsc/source/res/rsctop \
67	rsc/source/res/rscrange \
68	rsc/source/res/rscconst \
69	rsc/source/res/rscflag \
70	rsc/source/res/rscstr \
71	rsc/source/res/rscall \
72	rsc/source/res/rsccont \
73	rsc/source/res/rscclass \
74	rsc/source/res/rscmgr \
75	rsc/source/res/rscarray \
76	rsc/source/rsc/rsc \
77	rsc/source/tools/rschash \
78	rsc/source/tools/rsctree \
79	rsc/source/tools/rsctools \
80	rsc/source/tools/rscchar \
81	rsc/source/tools/rscdef \
82))
83
84# vim: set noet sw=4 ts=4:
85