Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
ee0a39c5
Kaydet (Commit)
ee0a39c5
authored
12 years ago
tarafından
David Tardon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
adapt ucpp for UnpackedTarball
Change-Id: I0871baf8a6c72ea0c7b44a7abfc8d5152b331db5
üst
df4ff354
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
50 deletions
+30
-50
CustomTarget_source.mk
ucpp/CustomTarget_source.mk
+0
-35
Executable_ucpp.mk
ucpp/Executable_ucpp.mk
+9
-11
Module_ucpp.mk
ucpp/Module_ucpp.mk
+1
-4
UnpackedTarball_ucpp.mk
ucpp/UnpackedTarball_ucpp.mk
+20
-0
No files found.
ucpp/CustomTarget_source.mk
deleted
100644 → 0
Dosyayı görüntüle @
df4ff354
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_CustomTarget_CustomTarget,ucpp/source))
$(call gb_CustomTarget_get_target,ucpp/source) : $(call gb_CustomTarget_get_workdir,ucpp/source)/done
# FIXME: do not hardcode the path here
ifeq ($(OS_FOR_BUILD),WNT)
ucpp_FIXED_TARFILE_LOCATION := $(shell cygpath -u $(TARFILE_LOCATION))/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
else
ucpp_FIXED_TARFILE_LOCATION := $(TARFILE_LOCATION)/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
endif
$(call gb_CustomTarget_get_workdir,ucpp/source)/done : \
$(ucpp_FIXED_TARFILE_LOCATION) \
$(SRCDIR)/ucpp/ucpp.patch \
| $(call gb_CustomTarget_get_workdir,ucpp/source)/.dir
$(call gb_CustomTarget_get_workdir,ucpp/source)/done :
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),TAR,1)
$(call gb_Helper_abbreviate_dirs,\
cd $(dir $@) && \
$(GNUTAR) -x -z $(STRIP_COMPONENTS)=1 -f $< && \
$(GNUPATCH) -p0 < $(SRCDIR)/ucpp/ucpp.patch && \
touch $@ \
)
# vim: set noet sw=4 ts=4:
This diff is collapsed.
Click to expand it.
ucpp/Executable_ucpp.mk
Dosyayı görüntüle @
ee0a39c5
...
...
@@ -11,9 +11,7 @@ $(eval $(call gb_Executable_Executable,ucpp))
$(eval $(call gb_Executable_set_warnings_not_errors,ucpp))
$(eval $(call gb_Executable_use_custom_headers,ucpp,\
ucpp/source \
))
$(eval $(call gb_Executable_use_unpacked,ucpp,ucpp))
$(eval $(call gb_Executable_add_defs,ucpp,\
-DNO_UCPP_BUF \
...
...
@@ -22,14 +20,14 @@ $(eval $(call gb_Executable_add_defs,ucpp,\
))
$(eval $(call gb_Executable_add_generated_cobjects,ucpp,\
CustomTarget/ucpp/source
/assert \
CustomTarget/ucpp/source
/cpp \
CustomTarget/ucpp/source
/eval \
CustomTarget/ucpp/source
/hash \
CustomTarget/ucpp/source
/lexer \
CustomTarget/ucpp/source
/macro \
CustomTarget/ucpp/source
/mem \
CustomTarget/ucpp/source
/nhash \
UnpackedTarball/ucpp
/assert \
UnpackedTarball/ucpp
/cpp \
UnpackedTarball/ucpp
/eval \
UnpackedTarball/ucpp
/hash \
UnpackedTarball/ucpp
/lexer \
UnpackedTarball/ucpp
/macro \
UnpackedTarball/ucpp
/mem \
UnpackedTarball/ucpp
/nhash \
))
# vim: set noet sw=4 ts=4:
This diff is collapsed.
Click to expand it.
ucpp/Module_ucpp.mk
Dosyayı görüntüle @
ee0a39c5
...
...
@@ -9,13 +9,10 @@
$(eval $(call gb_Module_Module,ucpp))
$(eval $(call gb_Module_add_targets,ucpp,\
CustomTarget_source \
))
ifneq ($(CROSS_COMPILING),YES)
$(eval $(call gb_Module_add_targets,ucpp,\
Executable_ucpp \
UnpackedTarball_ucpp \
))
endif
...
...
This diff is collapsed.
Click to expand it.
ucpp/UnpackedTarball_ucpp.mk
0 → 100644
Dosyayı görüntüle @
ee0a39c5
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
$(eval $(call gb_UnpackedTarball_UnpackedTarball,ucpp))
$(eval $(call gb_UnpackedTarball_set_tarball,ucpp,0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz))
$(eval $(call gb_UnpackedTarball_set_patchlevel,ucpp,0))
$(eval $(call gb_UnpackedTarball_add_patches,ucpp,\
ucpp/ucpp.patch \
))
# vim: set noet sw=4 ts=4:
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment