2006-12-01 09:32:15 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-10 04:25:31 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2006-12-01 09:32:15 -06:00
|
|
|
#
|
2008-04-10 04:25:31 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2006-12-01 09:32:15 -06:00
|
|
|
#
|
2008-04-10 04:25:31 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2006-12-01 09:32:15 -06:00
|
|
|
#
|
2008-04-10 04:25:31 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2006-12-01 09:32:15 -06:00
|
|
|
#
|
2008-04-10 04:25:31 -05:00
|
|
|
# OpenOffice.org 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 version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2006-12-01 09:32:15 -06:00
|
|
|
#
|
2008-04-10 04:25:31 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2006-12-01 09:32:15 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
PRJ = ..$/..$/..$/..$/..
|
2006-12-01 09:32:15 -06:00
|
|
|
PRJNAME = smoke_test
|
|
|
|
PACKAGE = com$/sun$/star$/comp$/smoketest
|
|
|
|
TARGET = com_sun_star_comp_smoketest
|
|
|
|
|
|
|
|
no_common_build_zip:=TRUE
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
|
|
|
|
JARFILES = ridl.jar jurt.jar unoil.jar juh.jar
|
|
|
|
|
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
JARTARGET = TestExtension.jar
|
|
|
|
JARCOMPRESS = TRUE
|
2006-12-01 09:32:15 -06:00
|
|
|
CUSTOMMANIFESTFILE = MANIFEST.MF
|
|
|
|
|
|
|
|
ZIP1TARGET=TestExtension
|
|
|
|
ZIP1LIST=*
|
|
|
|
ZIPFLAGS=-r
|
|
|
|
ZIP1DIR=$(MISC)$/$(TARGET)
|
|
|
|
ZIP1EXT=.oxt
|
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
#COPY_OXT_MANIFEST:= $(MISC)$/$(TARGET)$/META-INF$/manifest.xml
|
2006-12-01 09:32:15 -06:00
|
|
|
JAVAFILES = TestExtension.java
|
|
|
|
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
ZIP1DEPS=$(MISC)$/$(TARGET)$/$(JARTARGET)\
|
|
|
|
$(MISC)$/$(TARGET)$/TestExtension.rdb\
|
|
|
|
$(MISC)$/$(TARGET)$/META-INF$/manifest.xml
|
2006-12-01 09:32:15 -06:00
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
.INCLUDE : target.mk
|
2006-12-01 09:32:15 -06:00
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
$(MISC)$/TestExtension.urd: TestExtension.idl
|
2006-12-01 09:32:15 -06:00
|
|
|
$(IDLC) -O$(MISC) -I$(SOLARIDLDIR) -cid -we $<
|
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
$(MISC)$/$(TARGET)$/META-INF$/manifest.xml: manifest.xml
|
|
|
|
@-$(MKDIRHIER) $(@:d)
|
|
|
|
$(COPY) $< $@
|
2006-12-01 09:32:15 -06:00
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
$(MISC)$/$(TARGET)$/TestExtension.rdb: $(MISC)$/TestExtension.urd
|
|
|
|
$(REGMERGE) $@ /UCR $<
|
2006-12-01 09:32:15 -06:00
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
$(JAVACLASSFILES) .UPDATEALL: $(MISC)$/$(TARGET)$/TestExtension.rdb
|
|
|
|
$(JAVAMAKER) -O$(CLASSDIR) -BUCR -nD -X$(SOLARBINDIR)/types.rdb $<
|
2006-12-01 09:32:15 -06:00
|
|
|
|
2009-03-13 12:03:00 -05:00
|
|
|
$(MISC)$/$(TARGET)$/$(JARTARGET) : $(JARTARGETN)
|
|
|
|
$(COPY) $< $@
|