1*1c25f252Sdamjan#**************************************************************
2*1c25f252Sdamjan#
3*1c25f252Sdamjan#  Licensed to the Apache Software Foundation (ASF) under one
4*1c25f252Sdamjan#  or more contributor license agreements.  See the NOTICE file
5*1c25f252Sdamjan#  distributed with this work for additional information
6*1c25f252Sdamjan#  regarding copyright ownership.  The ASF licenses this file
7*1c25f252Sdamjan#  to you under the Apache License, Version 2.0 (the
8*1c25f252Sdamjan#  "License"); you may not use this file except in compliance
9*1c25f252Sdamjan#  with the License.  You may obtain a copy of the License at
10*1c25f252Sdamjan#
11*1c25f252Sdamjan#    http://www.apache.org/licenses/LICENSE-2.0
12*1c25f252Sdamjan#
13*1c25f252Sdamjan#  Unless required by applicable law or agreed to in writing,
14*1c25f252Sdamjan#  software distributed under the License is distributed on an
15*1c25f252Sdamjan#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*1c25f252Sdamjan#  KIND, either express or implied.  See the License for the
17*1c25f252Sdamjan#  specific language governing permissions and limitations
18*1c25f252Sdamjan#  under the License.
19*1c25f252Sdamjan#
20*1c25f252Sdamjan#**************************************************************
21*1c25f252Sdamjan
22*1c25f252Sdamjaninclude $(SRCDIR)/python/pyversion.mk
23*1c25f252Sdamjan
24*1c25f252Sdamjan$(eval $(call gb_Executable_Executable,pyuno_python_exe))
25*1c25f252Sdamjan
26*1c25f252Sdamjan$(eval $(call gb_Executable_set_include,pyuno_python_exe,\
27*1c25f252Sdamjan	$$(INCLUDE) \
28*1c25f252Sdamjan	-I$(WORKDIR)/CustomTarget/pyuno/zipcore \
29*1c25f252Sdamjan))
30*1c25f252Sdamjan
31*1c25f252Sdamjan$(eval $(call gb_Executable_add_linked_libs,pyuno_python_exe,\
32*1c25f252Sdamjan	sal \
33*1c25f252Sdamjan	stl \
34*1c25f252Sdamjan    $(gb_STDLIBS) \
35*1c25f252Sdamjan))
36*1c25f252Sdamjan
37*1c25f252Sdamjan$(eval $(call gb_Executable_add_linked_libs,pyuno_python_exe,\
38*1c25f252Sdamjan	user32 \
39*1c25f252Sdamjan))
40*1c25f252Sdamjan
41*1c25f252Sdamjan$(eval $(call gb_Executable_add_linked_static_libs,pyuno_python_exe,\
42*1c25f252Sdamjan	ooopathutils \
43*1c25f252Sdamjan))
44*1c25f252Sdamjan
45*1c25f252Sdamjan$(eval $(call gb_Executable_add_exception_objects,pyuno_python_exe,\
46*1c25f252Sdamjan	pyuno/zipcore/python \
47*1c25f252Sdamjan))
48*1c25f252Sdamjan
49*1c25f252Sdamjan# Automatic dependency resolution fails; add it ourselves:
50*1c25f252Sdamjan$(SRCDIR)/pyuno/zipcore/python.cxx : $(WORKDIR)/CustomTarget/pyuno/zipcore/pyversion.hxx
51*1c25f252Sdamjan
52*1c25f252Sdamjan$(WORKDIR)/CustomTarget/pyuno/zipcore/pyversion.hxx : $(SRCDIR)/pyuno/zipcore/pyversion.inc
53*1c25f252Sdamjan	mkdir -p $(dir $@) && \
54*1c25f252Sdamjan	sed "s/@/$(PYVERSION)/g" < $< > $@
55*1c25f252Sdamjan
56*1c25f252Sdamjan
57*1c25f252Sdamjan
58*1c25f252Sdamjan# FIXME: cannot specify custom executable path, so must build a wrongly named EXE and then re-deliver it to a different directory!
59*1c25f252Sdamjan$(eval $(call gb_Package_Package,pyuno_python_exe,$(OUTDIR)))
60*1c25f252Sdamjan$(eval $(call gb_Package_add_file,pyuno_python_exe,bin/pyuno/python.exe,bin/pyuno_python_exe.exe))
61*1c25f252Sdamjan
62*1c25f252Sdamjan
63*1c25f252Sdamjan# vim: set noet sw=4 ts=4:
64