diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-27 06:27:38 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-27 06:27:38 +0000 |
commit | 6c9d2dd17ec789ccf1cadd9499ad4556717d3058 (patch) | |
tree | ebdef93091c930379d7917e65b7f565f6dd6dfed | |
parent | 651da88c0876027a82171ab74c1f8eb3debdbade (diff) |
#i10000# Bring module 'oovbaapi' to HEAD
-rw-r--r-- | oovbaapi/prj/build.lst | 6 | ||||
-rw-r--r-- | oovbaapi/prj/d.lst | 1 | ||||
-rw-r--r-- | oovbaapi/util/makefile.mk | 66 |
3 files changed, 73 insertions, 0 deletions
diff --git a/oovbaapi/prj/build.lst b/oovbaapi/prj/build.lst new file mode 100644 index 000000000000..21150f65b23e --- /dev/null +++ b/oovbaapi/prj/build.lst @@ -0,0 +1,6 @@ +ovba oovbaapi : offapi solenv NULL +ovba oovbaapi usr1 - all ovba_mkout NULL +ovba oovbaapi\org\openoffice\vba nmake - all ovba_vba NULL +ovba oovbaapi\org\openoffice\excel nmake - all ovba_excel NULL +ovba oovbaapi\org\openoffice\msforms nmake - all ovba_msforms NULL +ovba oovbaapi\util nmake - all ovba_util ovba_vba ovba_excel ovba_msforms NULL diff --git a/oovbaapi/prj/d.lst b/oovbaapi/prj/d.lst new file mode 100644 index 000000000000..1acd2acd5b4b --- /dev/null +++ b/oovbaapi/prj/d.lst @@ -0,0 +1 @@ +..\%__SRC%\ucr\oovbaapi.db %_DEST%\bin%_EXT%\oovbaapi.rdb diff --git a/oovbaapi/util/makefile.mk b/oovbaapi/util/makefile.mk new file mode 100644 index 000000000000..abfbcbba24a2 --- /dev/null +++ b/oovbaapi/util/makefile.mk @@ -0,0 +1,66 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# last change: $Author: rt $ $Date: 2007-04-27 07:26:44 $ +# +# 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=.. +PRJPCH= + +PRJNAME=oovbaapi +TARGET=oovbaapi_db + + +# --- Settings ----------------------------------------------------- + +.INCLUDE : makefile.pmk + +.IF "$(ENABLE_VBA)"!="YES" +dummy: + @echo "not building vba..." +.ENDIF + +# ------------------------------------------------------------------ +UNOIDLDBFILES= \ + $(UCR)$/vba.db \ + $(UCR)$/excel.db \ + $(UCR)$/msforms.db + +# --- Targets ------------------------------------------------------ + +ALLTAR : $(UCR)$/types.db + +$(UCR)$/types.db : $(UCR)$/oovbaapi.db + +-$(RM) $(REGISTRYCHECKFLAG) + +$(GNUCOPY) -f $(UCR)$/oovbaapi.db $@ + +.INCLUDE : target.mk |