diff options
author | Peter Foley <pefoley2@verizon.net> | 2011-09-18 11:23:59 -0400 |
---|---|---|
committer | Peter Foley <pefoley2@verizon.net> | 2011-09-18 16:53:10 -0400 |
commit | aee561af31453735d88854020699b2eaecf943a0 (patch) | |
tree | 17b356693048c903f33ecd10afa69c86088aa5d4 /sane/prj | |
parent | 8f07feaa6e5fc7a1e5e779b44b16d9a22029c840 (diff) |
convert sane to gbuild
Diffstat (limited to 'sane/prj')
-rw-r--r-- | sane/prj/build.lst | 3 | ||||
-rw-r--r-- | sane/prj/d.lst | 3 | ||||
-rw-r--r-- | sane/prj/makefile.mk | 40 |
3 files changed, 41 insertions, 5 deletions
diff --git a/sane/prj/build.lst b/sane/prj/build.lst index c1c6fb90bfdc..a6576ebadacd 100644 --- a/sane/prj/build.lst +++ b/sane/prj/build.lst @@ -1,3 +1,2 @@ sa sane : solenv NULL -sa sane usr1 - all sa_mkout NULL -sa sane\prj get - all sa_prj NULL +sa sane\prj nmake - all sa_prj NULL diff --git a/sane/prj/d.lst b/sane/prj/d.lst index f59282160ddb..e69de29bb2d1 100644 --- a/sane/prj/d.lst +++ b/sane/prj/d.lst @@ -1,3 +0,0 @@ -mkdir: %_DEST%\inc\external -mkdir: %_DEST%\inc\external\sane -..\inc\sane.h %_DEST%\inc\external\sane\sane.h diff --git a/sane/prj/makefile.mk b/sane/prj/makefile.mk new file mode 100644 index 000000000000..85b25665cc83 --- /dev/null +++ b/sane/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$(GMAKE_MODULE_PARALLELISM) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog |