1*122c3632SJürgen Schmidt#**************************************************************
2*122c3632SJürgen Schmidt#
3*122c3632SJürgen Schmidt#  Licensed to the Apache Software Foundation (ASF) under one
4*122c3632SJürgen Schmidt#  or more contributor license agreements.  See the NOTICE file
5*122c3632SJürgen Schmidt#  distributed with this work for additional information
6*122c3632SJürgen Schmidt#  regarding copyright ownership.  The ASF licenses this file
7*122c3632SJürgen Schmidt#  to you under the Apache License, Version 2.0 (the
8*122c3632SJürgen Schmidt#  "License"); you may not use this file except in compliance
9*122c3632SJürgen Schmidt#  with the License.  You may obtain a copy of the License at
10*122c3632SJürgen Schmidt#
11*122c3632SJürgen Schmidt#    http://www.apache.org/licenses/LICENSE-2.0
12*122c3632SJürgen Schmidt#
13*122c3632SJürgen Schmidt#  Unless required by applicable law or agreed to in writing,
14*122c3632SJürgen Schmidt#  software distributed under the License is distributed on an
15*122c3632SJürgen Schmidt#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*122c3632SJürgen Schmidt#  KIND, either express or implied.  See the License for the
17*122c3632SJürgen Schmidt#  specific language governing permissions and limitations
18*122c3632SJürgen Schmidt#  under the License.
19cdf0e10cSrcweir#
20*122c3632SJürgen Schmidt#**************************************************************
21cdf0e10cSrcweir
22cdf0e10cSrcweir# Builds the OfficeDevDesktopEnvironment native library of the Developers Guide.
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=../../../../../..
25cdf0e10cSrcweirSETTINGS=$(PRJ)/settings
26cdf0e10cSrcweir
27cdf0e10cSrcweirinclude $(SETTINGS)/settings.mk
28cdf0e10cSrcweirinclude $(SETTINGS)/std.mk
29cdf0e10cSrcweirinclude $(SETTINGS)/dk.mk
30cdf0e10cSrcweir
31cdf0e10cSrcweir# Define non-platform/compiler specific settings
32cdf0e10cSrcweirSHL_NAME=nativeview
33cdf0e10cSrcweirSHL_LIBRARY=$(SHAREDLIB_OUT)/$(SHAREDLIB_PRE)$(SHL_NAME).$(SHAREDLIB_EXT)
34cdf0e10cSrcweir
35cdf0e10cSrcweirOUT_SHL_SLO=$(OUT_SLO)/nativeview
36cdf0e10cSrcweirOUT_SHL_MISC=$(OUT_MISC)/nativeview
37cdf0e10cSrcweir
38cdf0e10cSrcweirCFILES = nativeview.c
39cdf0e10cSrcweir
40cdf0e10cSrcweirSLOFILES = $(patsubst %.c,$(OUT_SHL_SLO)/%.$(OBJ_EXT),$(CFILES))
41cdf0e10cSrcweir
42cdf0e10cSrcweir# Targets
43cdf0e10cSrcweir.PHONY: ALL
44cdf0e10cSrcweirALL : \
45cdf0e10cSrcweir    $(SHL_LIBRARY)
46cdf0e10cSrcweir
47cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
48cdf0e10cSrcweir
49cdf0e10cSrcweir$(OUT_SHL_SLO)/%.$(OBJ_EXT) : %.c
50cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
51cdf0e10cSrcweir	$(CC) $(CC_FLAGS_JNI) $(CC_INCLUDES) $(SDK_JAVA_INCLUDES) $(CC_DEFINES_JNI) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
52cdf0e10cSrcweir
53cdf0e10cSrcweir$(SHAREDLIB_OUT)/$(SHAREDLIB_PRE)$(SHL_NAME).$(SHAREDLIB_EXT) : $(SLOFILES) $(SHL_NAME).def
54cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
55cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(OUT_SHL_MISC))
56cdf0e10cSrcweir	$(LINK) $(LIBRARY_LINK_FLAGS) /DEF:$(SHL_NAME).def /OUT:$@ \
57cdf0e10cSrcweir	/MAP:$(OUT_SHL_MISC)/$(SHL_NAME).map $(LINK_JAVA_LIBS) \
58cdf0e10cSrcweir	$(SLOFILES) jawt.lib msvcrt.lib kernel32.lib user32.lib
59cdf0e10cSrcweir	$(LINK_MANIFEST)
60cdf0e10cSrcweir
61cdf0e10cSrcweir.PHONY: clean
62cdf0e10cSrcweirclean :
63cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_SHL_SLO))
64cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_SHL_MISC))
65cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(SHAREDLIB_OUT))$(PS)*$(SHL_NAME)*.*)
66