diff options
Diffstat (limited to 'editeng/prj')
-rw-r--r-- | editeng/prj/build.lst | 12 | ||||
-rw-r--r-- | editeng/prj/makefile.mk | 40 |
2 files changed, 41 insertions, 11 deletions
diff --git a/editeng/prj/build.lst b/editeng/prj/build.lst index 551a21bc37f2..3c714c6dac25 100644 --- a/editeng/prj/build.lst +++ b/editeng/prj/build.lst @@ -1,13 +1,3 @@ ed editeng : l10n svtools xmloff linguistic NULL -ed editeng usr1 - all ed_mkout NULL -ed editeng\inc nmake - all ed_inc NULL -ed editeng\source\items nmake - all ed_items ed_inc NULL -ed editeng\source\editeng nmake - all ed_eeng ed_inc NULL -ed editeng\source\misc nmake - all ed_misc ed_inc NULL -ed editeng\source\outliner nmake - all ed_outl ed_inc NULL -ed editeng\source\rtf nmake - all ed_rtf ed_inc NULL -ed editeng\source\uno nmake - all ed_uno ed_inc NULL -ed editeng\source\xml nmake - all ed_xml ed_inc NULL -ed editeng\source\accessibility nmake - all ed_accessibility ed_inc NULL -ed editeng\util nmake - all ed_util ed_rtf ed_eeng ed_items ed_outl ed_uno ed_xml ed_accessibility ed_misc NULL +ed editeng\prj nmake - all ed_prj NULL diff --git a/editeng/prj/makefile.mk b/editeng/prj/makefile.mk new file mode 100644 index 000000000000..e312a7ccab65 --- /dev/null +++ b/editeng/prj/makefile.mk @@ -0,0 +1,40 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# 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 +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +PRJ=.. +TARGET=prj + +.INCLUDE : settings.mk + +.IF "$(VERBOSE)"!="" +VERBOSEFLAG := +.ELSE +VERBOSEFLAG := -s +.ENDIF + +all: + cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog |