From 00754ffbe737a964e68c5b0215d7faa6fb1bbbfd Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Wed, 30 Jul 2008 11:46:51 +0000 Subject: INTEGRATION: CWS ause091 (1.1.2); FILE ADDED 2008/07/24 16:07:55 hjs 1.1.2.1: #i92050# - create *minor.mk in a mp safe way --- solenv/makefile.mk | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 solenv/makefile.mk (limited to 'solenv/makefile.mk') diff --git a/solenv/makefile.mk b/solenv/makefile.mk new file mode 100644 index 000000000000..85823378e245 --- /dev/null +++ b/solenv/makefile.mk @@ -0,0 +1,44 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2008 by Sun Microsystems, Inc. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# This file is part of OpenOffice.org. +# +# 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. +# +# 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). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +PRJ=. +PRJNAME=solenv +TARGET=init + +# --- Settings ---------------------------------- +.INCLUDE : settings.mk +.INCLUDE : target.mk + +ALLTAR : comment + +comment: + @echo just for sideeffects... + -- cgit From f281d77a219c9793c9b9215ef57f8ce1331eb487 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Fri, 12 Feb 2010 15:01:35 +0100 Subject: changefileheader2: #i109125#: change source file copyright notice from Sun Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision) --- solenv/makefile.mk | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'solenv/makefile.mk') diff --git a/solenv/makefile.mk b/solenv/makefile.mk index 85823378e245..31bed765ac7f 100644 --- a/solenv/makefile.mk +++ b/solenv/makefile.mk @@ -1,15 +1,11 @@ #************************************************************************* # # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2008 by Sun Microsystems, Inc. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. # # OpenOffice.org - a multi-platform office productivity suite # -# $RCSfile: makefile.mk,v $ -# -# $Revision: 1.2 $ -# # This file is part of OpenOffice.org. # # OpenOffice.org is free software: you can redistribute it and/or modify -- cgit From 13a3e991825849c851e626cdbec0b40bb8161263 Mon Sep 17 00:00:00 2001 From: Dirk Voelzke Date: Fri, 29 Oct 2010 15:55:47 +0200 Subject: dv22:#i112913# Use only one file with version info --- solenv/makefile.mk | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) mode change 100644 => 100755 solenv/makefile.mk (limited to 'solenv/makefile.mk') diff --git a/solenv/makefile.mk b/solenv/makefile.mk old mode 100644 new mode 100755 index 31bed765ac7f..c4a2d0893d7c --- a/solenv/makefile.mk +++ b/solenv/makefile.mk @@ -32,9 +32,14 @@ TARGET=init # --- Settings ---------------------------------- .INCLUDE : settings.mk .INCLUDE : target.mk +.INCLUDE : versionlist.mk -ALLTAR : comment - -comment: - @echo just for sideeffects... +ALLTAR : $(INCCOM)/versionlist.hrc +$(INCCOM)/versionlist.hrc : ./inc/version.lst + $(COMMAND_ECHO)echo "#define VERSION $(OOOBASEVERSIONMAJOR)" > $@ + $(COMMAND_ECHO)echo "#define SUBVERSION $(OOOBASEVERSIONMINOR)" >> $@ + $(COMMAND_ECHO)echo "#define MICROVERSION $(OOOBASEVERSIONMICRO)" >> $@ + $(COMMAND_ECHO)echo "#define VER_DAY $(OOOBASEVERSIONDAY)" >> $@ + $(COMMAND_ECHO)echo "#define VER_MONTH $(OOOBASEVERSIONMONTH)" >> $@ + $(COMMAND_ECHO)echo "#define VER_YEAR $(OOOBASEVERSIONYEAR)" >> $@ -- cgit