gbuildize unoil
This commit is contained in:
parent
8c0e9a86a2
commit
824a640605
@ -101,6 +101,7 @@ $(eval $(call gb_Module_add_moduledirs,ooo,\
|
||||
ucbhelper \
|
||||
udkapi \
|
||||
unixODBC \
|
||||
unoil \
|
||||
unotools \
|
||||
unoxml \
|
||||
uui \
|
||||
|
36
unoil/Jar_unoil.mk
Normal file
36
unoil/Jar_unoil.mk
Normal file
@ -0,0 +1,36 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
$(eval $(call gb_Jar_Jar,unoil))
|
||||
|
||||
$(eval $(call gb_Jar_add_packagedirs,unoil,\
|
||||
$(WORKDIR)/CustomTarget/unoil/javamaker/com \
|
||||
))
|
||||
|
||||
$(call gb_Jar_get_target,unoil) : $(call gb_Package_get_target,unoil_javamaker)
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|
@ -1,3 +1,4 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
#*************************************************************************
|
||||
#
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
@ -25,23 +26,15 @@
|
||||
#
|
||||
#*************************************************************************
|
||||
|
||||
PRJ := ..
|
||||
PRJNAME := unoil
|
||||
TARGET := javamaker
|
||||
gb_PARTIALBUILD := T
|
||||
ifeq ($(strip $(SOLARENV)),)
|
||||
include $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/../solenv/gbuild/source_and_rerun.mk
|
||||
else
|
||||
|
||||
.INCLUDE: settings.mk
|
||||
gb_SourceEnvAndRecurse_STAGE=gbuild
|
||||
include $(SOLARENV)/gbuild/gbuild.mk
|
||||
|
||||
RDB = $(SOLARBINDIR)$/offapi.rdb
|
||||
EXTRA_RDB = $(SOLARBINDIR)$/udkapi.rdb
|
||||
$(eval $(call gb_Module_make_global_targets,$(shell ls $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/Module*.mk)))
|
||||
|
||||
.INCLUDE: target.mk
|
||||
|
||||
.IF "$(SOLAR_JAVA)" != ""
|
||||
|
||||
ALLTAR: $(MISC)$/javamaker.done
|
||||
|
||||
$(MISC)$/javamaker.done .ERRREMOVE: $(RDB) $(EXTRA_RDB)
|
||||
$(JAVAMAKER) -BUCR -O$(CLASSDIR) $(RDB) -X$(EXTRA_RDB)
|
||||
$(TOUCH) $@
|
||||
|
||||
.ENDIF
|
||||
endif
|
||||
# vim: set noet sw=4 ts=4:
|
47
unoil/Module_unoil.mk
Normal file
47
unoil/Module_unoil.mk
Normal file
@ -0,0 +1,47 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
$(eval $(call gb_Module_Module,unoil))
|
||||
|
||||
$(eval $(call gb_Module_add_targets,unoil,\
|
||||
Package_clioootypesversion \
|
||||
))
|
||||
|
||||
ifneq ($(SOLAR_JAVA),)
|
||||
$(eval $(call gb_Module_add_targets,unoil,\
|
||||
Jar_unoil \
|
||||
Package_javamaker \
|
||||
))
|
||||
endif
|
||||
|
||||
ifeq ($(COM),MSC)
|
||||
$(eval $(call gb_Module_add_targets,unoil,\
|
||||
Package_climaker \
|
||||
))
|
||||
endif
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|
49
unoil/Package_climaker.mk
Normal file
49
unoil/Package_climaker.mk
Normal file
@ -0,0 +1,49 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
$(eval $(call gb_Package_Package,unoil_climaker,$(WORKDIR)/CustomTarget/unoil/climaker))
|
||||
|
||||
$(eval $(call gb_Package_add_customtarget,unoil_climaker,unoil/climaker))
|
||||
|
||||
$(eval $(call gb_Package_add_file,unoil_climaker,bin/cli_oootypes.config,cli_oootypes.config))
|
||||
$(eval $(call gb_Package_add_file,unoil_climaker,bin/cli_oootypes.dll,cli_oootypes.dll))
|
||||
$(eval $(call gb_Package_add_file,unoil_climaker,bin/policy.1.0.cli_oootypes.dll,policy.1.0.cli_oootypes.dll))
|
||||
|
||||
$(eval $(call gb_CustomTarget_add_dependencies,unoil/climaker,\
|
||||
unoil/climaker/cli_oootypes_config \
|
||||
unoil/climaker/version.txt \
|
||||
))
|
||||
|
||||
$(eval $(call gb_CustomTarget_add_outdir_dependencies,unoil/climaker,\
|
||||
$(OUTDIR_FOR_BUILD)/bin/climaker \
|
||||
$(OUTDIR)/bin/cli_uretypes.dll \
|
||||
$(OUTDIR)/bin/cliuno.snk \
|
||||
$(OUTDIR)/bin/offapi.rdb \
|
||||
$(OUTDIR)/bin/udkapi.rdb \
|
||||
))
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|
32
unoil/Package_clioootypesversion.mk
Normal file
32
unoil/Package_clioootypesversion.mk
Normal file
@ -0,0 +1,32 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
$(eval $(call gb_Package_Package,unoil_clioootypesversion,$(SRCDIR)/unoil/climaker))
|
||||
|
||||
$(eval $(call gb_Package_add_file,unoil_clioootypesversion,bin/clioootypesversion.mk,version.txt))
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|
38
unoil/Package_javamaker.mk
Normal file
38
unoil/Package_javamaker.mk
Normal file
@ -0,0 +1,38 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
$(eval $(call gb_Package_Package,unoil_javamaker,$(WORKDIR)/CustomTarget/unoil/javamaker))
|
||||
|
||||
$(eval $(call gb_Package_add_customtarget,unoil_javamaker,unoil/javamaker))
|
||||
|
||||
$(eval $(call gb_CustomTarget_add_outdir_dependencies,unoil/javamaker,\
|
||||
$(OUTDIR_FOR_BUILD)/bin/javamaker \
|
||||
$(OUTDIR)/bin/offapi.rdb \
|
||||
$(OUTDIR)/bin/udkapi.rdb \
|
||||
))
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|
61
unoil/climaker/Makefile
Normal file
61
unoil/climaker/Makefile
Normal file
@ -0,0 +1,61 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
gb_PARTIALBUILD := T
|
||||
include $(GBUILDDIR)/gbuild_simple.mk
|
||||
|
||||
include $(SRCDIR)/unoil/climaker/version.txt
|
||||
|
||||
cli_oootypes.dll : $(SRCDIR)/unoil/climaker/version.txt
|
||||
$(call gb_Helper_execute,climaker \
|
||||
$(if $(filter -s,$(MAKEFLAGS)),,--verbose) \
|
||||
--out $@ \
|
||||
--assembly-version $(CLI_OOOTYPES_NEW_VERSION) \
|
||||
--assembly-company "LibreOffice" \
|
||||
--assembly-description "This assembly contains metadata for the LibreOffice API." \
|
||||
-X $(OUTDIR)/bin/udkapi.rdb \
|
||||
-r $(OUTDIR)/bin/cli_uretypes.dll \
|
||||
--keyfile $(OUTDIR)/bin/cliuno.snk \
|
||||
$(OUTDIR)/bin/offapi.rdb)
|
||||
|
||||
cli_oootypes.config : $(SRCDIR)/unoil/climaker/cli_oootypes_config $(SRCDIR)/unoil/climaker/version.txt
|
||||
perl $(SRCDIR)/solenv/bin/clipatchconfig.pl $< $@
|
||||
|
||||
$(CLI_OOOTYPES_POLICY_ASSEMBLY).dll : cli_oootypes.dll cli_oootypes.config
|
||||
al -out:$@ \
|
||||
-version:$(CLI_OOOTYPES_POLICY_VERSION) \
|
||||
-keyfile:$(OUTDIR)/bin/cliuno.snk \
|
||||
-link:cli_oootypes.config
|
||||
|
||||
.DEFAULT_GOAL := all
|
||||
.PHONY : all
|
||||
all : \
|
||||
cli_oootypes.dll \
|
||||
cli_oootypes.config \
|
||||
$(CLI_OOOTYPES_POLICY_ASSEMBLY).dll
|
||||
|
||||
# vim:set shiftwidth=4 tabstop=4 noexpandtab:
|
@ -1,93 +0,0 @@
|
||||
#*************************************************************************
|
||||
#
|
||||
# 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 = ..
|
||||
PRJNAME = unoil
|
||||
|
||||
# for dummy
|
||||
TARGET = unotypes
|
||||
|
||||
.INCLUDE : settings.mk
|
||||
.INCLUDE : $(PRJ)$/util$/makefile.pmk
|
||||
|
||||
.INCLUDE : target.mk
|
||||
|
||||
.INCLUDE : version.txt
|
||||
|
||||
POLICY_ASSEMBLY_FILE=$(BIN)/$(CLI_OOOTYPES_POLICY_ASSEMBLY).dll
|
||||
|
||||
.IF "$(BUILD_FOR_CLI)" != ""
|
||||
|
||||
ALLTAR : \
|
||||
$(BIN)$/clioootypesversion.mk \
|
||||
$(BIN)$/cli_oootypes.dll \
|
||||
$(POLICY_ASSEMBLY_FILE)
|
||||
|
||||
.ELSE
|
||||
|
||||
ALLTAR : \
|
||||
$(BIN)$/clioootypesversion.mk
|
||||
|
||||
.ENDIF
|
||||
|
||||
|
||||
CLIMAKERFLAGS =
|
||||
.IF "$(debug)" != ""
|
||||
CLIMAKERFLAGS += --verbose
|
||||
.ENDIF
|
||||
|
||||
RDB = $(SOLARBINDIR)$/offapi.rdb
|
||||
EXTRA_RDB = $(SOLARBINDIR)$/udkapi.rdb
|
||||
|
||||
$(BIN)/cli_oootypes.dll : $(RDB) $(EXTRA_RDB) version.txt
|
||||
$(CLIMAKER) $(CLIMAKERFLAGS) \
|
||||
--out $@ \
|
||||
--assembly-version $(CLI_OOOTYPES_NEW_VERSION) \
|
||||
--assembly-company "OpenOffice.org" \
|
||||
--assembly-description "This assembly contains metadata for the StarOffice/OpenOffice.org API." \
|
||||
-X $(EXTRA_RDB) \
|
||||
-r $(SOLARBINDIR)$/cli_uretypes.dll \
|
||||
--keyfile $(SOLARBINDIR)$/cliuno.snk \
|
||||
$(RDB)
|
||||
|
||||
|
||||
#Create the config file that is used with the policy assembly
|
||||
$(BIN)$/cli_oootypes.config: cli_oootypes_config version.txt
|
||||
$(PERL) $(SOLARENV)$/bin$/clipatchconfig.pl \
|
||||
$< $@
|
||||
|
||||
$(POLICY_ASSEMBLY_FILE) : $(BIN)$/cli_oootypes.config $(BIN)$/cli_oootypes.dll
|
||||
$(WRAPCMD) AL.exe -out:$@ \
|
||||
-version:$(CLI_OOOTYPES_POLICY_VERSION) \
|
||||
-keyfile:$(SOLARBINDIR)$/cliuno.snk \
|
||||
-link:$(BIN)$/cli_oootypes.config
|
||||
|
||||
#always deliver a clioootypesversion.mk. It is needed for the packing process even for all other
|
||||
#platforms. Therefore BUILD_FOR_CLI is not used here
|
||||
$(BIN)$/clioootypesversion.mk: version.txt
|
||||
$(GNUCOPY) $< $@
|
||||
|
39
unoil/javamaker/Makefile
Normal file
39
unoil/javamaker/Makefile
Normal file
@ -0,0 +1,39 @@
|
||||
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
||||
# Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License or as specified alternatively below. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# Major Contributor(s):
|
||||
# Copyright (C) 2010 Red Hat, Inc., David Tardon <dtardon@redhat.com>
|
||||
# (initial developer)
|
||||
#
|
||||
# All Rights Reserved.
|
||||
#
|
||||
# For minor contributions see the git repository.
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
||||
# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
||||
# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
||||
# instead of those above.
|
||||
|
||||
gb_PARTIALBUILD := T
|
||||
include $(GBUILDDIR)/gbuild_simple.mk
|
||||
|
||||
done :
|
||||
$(call gb_Helper_execute,javamaker -BUCR -O$(realpath .) $(OUTDIR)/bin/offapi.rdb -X$(OUTDIR)/bin/udkapi.rdb) && \
|
||||
touch $@
|
||||
|
||||
.DEFAULT_GOAL := all
|
||||
.PHONY : all
|
||||
all : done
|
||||
|
||||
# vim:set shiftwidth=4 tabstop=4 noexpandtab:
|
@ -1,4 +1,2 @@
|
||||
ul unoil :: DESKTOP:codemaker offapi ridljar solenv cli_ure NULL
|
||||
ul unoil\javamaker nmake - all ul_javamaker NULL
|
||||
ul unoil\util nmake - all ul_util ul_javamaker NULL
|
||||
ul unoil\climaker nmake - all ul_climaker NULL
|
||||
ul unoil\prj nmake - all ul_prj NULL
|
||||
|
@ -1,5 +0,0 @@
|
||||
..\%__SRC%\class\unoil.jar %_DEST%\bin\unoil.jar
|
||||
..\%__SRC%\bin\cli_oootypes.dll %_DEST%\bin\cli_oootypes.dll
|
||||
..\%__SRC%\bin\cli_oootypes.config %_DEST%\bin\cli_oootypes.config
|
||||
..\%__SRC%\bin\policy*.dll %_DEST%\bin\policy*.dll
|
||||
..\%__SRC%\bin\clioootypesversion.mk %_DEST%\bin\clioootypesversion.mk
|
1
unoil/prj/makefile.mk
Normal file
1
unoil/prj/makefile.mk
Normal file
@ -0,0 +1 @@
|
||||
.INCLUDE : gbuildbridge.mk
|
@ -1,44 +0,0 @@
|
||||
#*************************************************************************
|
||||
#
|
||||
# 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 = ..
|
||||
PRJNAME = unoil
|
||||
TARGET = unoil
|
||||
|
||||
# --- Settings -----------------------------------------------------
|
||||
|
||||
.INCLUDE : settings.mk
|
||||
|
||||
MAXLINELENGTH = 100000
|
||||
|
||||
JARCLASSDIRS = com
|
||||
JARTARGET = $(TARGET).jar
|
||||
JARCOMPRESS = TRUE
|
||||
|
||||
# --- Targets ------------------------------------------------------
|
||||
|
||||
.INCLUDE : target.mk
|
@ -1,35 +0,0 @@
|
||||
#*************************************************************************
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
#*************************************************************************
|
||||
|
||||
# no translation here anyway
|
||||
.IF "$(L10N_framework)"==""
|
||||
.IF "$(COM)" == "MSC"
|
||||
BUILD_FOR_CLI = "true"
|
||||
CFLAGSENABLESYMBOLS:=-Z7
|
||||
.ENDIF
|
||||
.ENDIF # "L10N_framework"==""
|
||||
|
Loading…
x
Reference in New Issue
Block a user