diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:09:53 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 04:09:53 +0000 |
commit | 76a00088aca25f310e679acf43b700534a607a95 (patch) | |
tree | 2afe6539597d68520be3f82b76e680cad3229f24 /soltools/testhxx | |
parent | 30754b9022ca802da1b600e510838e616074ec72 (diff) |
INTEGRATION: CWS warnings01 (1.1.2); FILE ADDED
2005/11/01 09:09:37 sb 1.1.2.2: #i53898# Missing dependency on mkdepend.
2005/10/13 09:33:24 sb 1.1.2.1: #i53898# Added testhxx tool.
Diffstat (limited to 'soltools/testhxx')
-rw-r--r-- | soltools/testhxx/makefile.mk | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/soltools/testhxx/makefile.mk b/soltools/testhxx/makefile.mk new file mode 100644 index 000000000000..1a616a5051e3 --- /dev/null +++ b/soltools/testhxx/makefile.mk @@ -0,0 +1,66 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# last change: $Author: hr $ $Date: 2006-06-20 05:09:53 $ +# +# The Contents of this file are made available subject to +# the terms of GNU Lesser General Public License Version 2.1. +# +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2005 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# 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. +# +# 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. +# +# 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 +# +#************************************************************************* +PRJ := .. +PRJNAME := soltools +TARGET := testhxx +LIBTARGET := NO +ENABLE_EXCEPTIONS := TRUE + +.INCLUDE: $(PRJ)$/util$/makefile.pmk +.INCLUDE: settings.mk + +CAPTURE_COMMAND = echo +CAPTURE_OUTPUT = > $(MISC)$/testhxx.output + +SLOFILES = $(SLO)$/testhxx.obj + +.IF "$(OS)" == "WNT" +MY_SCRIPT_EXT := .btm +MY_EXECUTABLE := @ echo +.ELSE +MY_SCRIPT_EXT := +MY_EXECUTABLE := chmod +x +.ENDIF + +.INCLUDE: target.mk + +ALLTAR: $(BIN)$/$(TARGET)$(MY_SCRIPT_EXT) + +$(BIN)$/$(TARGET)$(MY_SCRIPT_EXT) .ERRREMOVE: $(MISC)$/testhxx.output create.pl + + $(PERL) -w create.pl < $(MISC)$/testhxx.output > $@ + $(MY_EXECUTABLE) $@ + +$(MISC)$/testhxx.output: $(SLO)$/testhxx.obj + + $(TOUCH) $< |