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 22PRJ=..$/..$/.. 23 24PRJNAME=desktop 25TARGET=guiloader 26LIBTARGET=NO 27TARGETTYPE=GUI 28UWINAPILIB= 29 30# --- Settings ----------------------------------------------------- 31 32.INCLUDE : settings.mk 33 34# --- Files -------------------------------------------------------- 35 36APP1TARGET=guiloader 37APP1NOSAL=TRUE 38APP1ICON=$(SOLARRESDIR)$/icons/ooo3_main_app.ico 39APP1OBJS=\ 40 $(OBJ)$/extendloaderenvironment.obj \ 41 $(OBJ)$/genericloader.obj \ 42 $(SOLARLIBDIR)$/pathutils-obj.obj 43STDLIB1=$(SHLWAPILIB) 44 45.IF "$(LINK_SO)"=="TRUE" 46APP2TARGET=so$/guiloader 47APP2NOSAL=TRUE 48APP2ICON=$(SOLARRESDIR)$/icons/so9_main_app.ico 49APP2OBJS=\ 50 $(OBJ)$/extendloaderenvironment.obj \ 51 $(OBJ)$/genericloader.obj \ 52 $(SOLARLIBDIR)$/pathutils-obj.obj 53STDLIB2=$(SHLWAPILIB) 54.ENDIF # "$(LINK_SO)"=="TRUE" 55 56# --- Targets ------------------------------------------------------ 57 58.INCLUDE : target.mk 59 60# vim: set noet sw=4 ts=4: 61