Files
libreoffice/xmlscript/test/makefile.mk

96 lines
2.7 KiB
Makefile
Raw Normal View History

2001-02-16 13:14:51 +00:00
#*************************************************************************
#
# OpenOffice.org - a multi-platform office productivity suite
2001-02-16 13:14:51 +00:00
#
# $RCSfile: makefile.mk,v $
2001-02-16 13:14:51 +00:00
#
# $Revision: 1.6 $
2001-02-16 13:14:51 +00:00
#
# last change: $Author: rt $ $Date: 2005-09-09 16:18:39 $
2001-02-16 13:14:51 +00:00
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
2001-02-16 13:14:51 +00:00
#
#
# GNU Lesser General Public License Version 2.1
# =============================================
# Copyright 2005 by Sun Microsystems, Inc.
# 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-02-16 13:14:51 +00:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1, as published by the Free Software Foundation.
2001-02-16 13:14:51 +00:00
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2001-02-16 13:14:51 +00:00
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
2001-02-16 13:14:51 +00:00
#
#*************************************************************************
PRJ=..
PRJNAME=xmlscript
TARGET=imexp
2001-10-15 12:54:10 +00:00
TARGETTYPE=GUI
2001-02-16 13:14:51 +00:00
LIBTARGET=NO
ENABLE_EXCEPTIONS=TRUE
# --- Settings -----------------------------------------------------
.INCLUDE : svpre.mk
.INCLUDE : settings.mk
.INCLUDE : sv.mk
# --- Files --------------------------------------------------------
CXXFILES= \
imexp.cxx
OBJFILES= \
$(OBJ)$/imexp.obj
APP1TARGET=$(TARGET)
APP1OBJS=$(OBJFILES)
APP1STDLIBS= \
$(TOOLSLIB) \
$(SOTLIB) \
$(SVTOOLLIB) \
$(COMPHELPERLIB) \
$(VCLLIB) \
$(CPPULIB) \
$(CPPUHELPERLIB) \
$(SALLIB) \
2001-03-06 08:39:55 +00:00
$(XMLSCRIPTLIB)
2001-02-16 13:14:51 +00:00
APP1DEF= $(MISC)$/imexp.def
# --- Targets ------------------------------------------------------
.INCLUDE : target.mk
# ------------------------------------------------------------------
# Windows
# ------------------------------------------------------------------
.IF "$(GUI)" == "WIN"
$(MISC)$/imexp.def: makefile.mk
2001-02-21 19:49:30 +00:00
echo NAME imexp >$@
2001-09-19 07:46:35 +00:00
echo DESCRIPTION 'XML dialog im-/ exporter' >>$@
2001-02-21 19:49:30 +00:00
echo EXETYPE WINDOWS >>$@
2001-09-19 07:46:35 +00:00
echo STUB 'winSTUB.EXE' >>$@
2001-02-21 19:49:30 +00:00
echo PROTMODE >>$@
2001-09-19 07:46:35 +00:00
echo CODE PRELOAD MOVEABLE DISCARDABLE >>$@
echo DATA PRELOAD MOVEABLE MULTIPLE >>$@
echo HEAPSIZE 8192 >>$@
echo STACKSIZE 32768 >>$@
2001-02-16 13:14:51 +00:00
.ENDIF