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
147b7f0d
Kaydet (Commit)
147b7f0d
authored
Ock 22, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adapt idlc/test/parser/ to gbuild
Change-Id: If57ab37dd4d062e3f6bbf5b75a0cde2524b635bd
üst
4ceba059
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
75 additions
and
46 deletions
+75
-46
CustomTarget_parser_test.mk
idlc/CustomTarget_parser_test.mk
+74
-0
Module_idlc.mk
idlc/Module_idlc.mk
+1
-0
makefile.mk
idlc/test/parser/makefile.mk
+0
-46
No files found.
idlc/CustomTarget_parser_test.mk
0 → 100644
Dosyayı görüntüle @
147b7f0d
# -*- 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,idlc/parser_test))
# this target is phony to run it every time
.PHONY : $(call gb_CustomTarget_get_target,idlc/parser_test)
$(call gb_CustomTarget_get_target,idlc/parser_test) : \
$(call gb_Executable_get_runtime_dependencies,idlc) \
$(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/attribute.tests \
$(SRCDIR)/idlc/test/parser/constant.tests \
$(SRCDIR)/idlc/test/parser/constructor.tests \
$(SRCDIR)/idlc/test/parser/interfaceinheritance.tests \
$(SRCDIR)/idlc/test/parser/methodoverload.tests \
$(SRCDIR)/idlc/test/parser/polystruct.tests \
$(SRCDIR)/idlc/test/parser/published.tests \
$(SRCDIR)/idlc/test/parser/struct.tests \
$(SRCDIR)/idlc/test/parser/typedef.tests
$(call gb_Helper_abbreviate_dirs, \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/attribute.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/constant.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/constructor.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/interfaceinheritance.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/methodoverload.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/polystruct.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/published.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/struct.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin && \
$(PERL) $(SRCDIR)/solenv/bin/exectest.pl \
$(SRCDIR)/idlc/test/parser/typedef.tests \
$(call gb_Executable_get_command,idlc) \
-O $(call gb_CustomTarget_get_workdir,idlc/parser_test) \
-stdin)
# vim: set noet sw=4 ts=4:
idlc/Module_idlc.mk
Dosyayı görüntüle @
147b7f0d
...
@@ -11,6 +11,7 @@ $(eval $(call gb_Module_Module,idlc))
...
@@ -11,6 +11,7 @@ $(eval $(call gb_Module_Module,idlc))
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
ifneq (,$(filter DESKTOP,$(BUILD_TYPE)))
$(eval $(call gb_Module_add_targets,idlc,Executable_idlc))
$(eval $(call gb_Module_add_targets,idlc,Executable_idlc))
$(eval $(call gb_Module_add_check_targets,idlc,CustomTarget_parser_test))
endif
endif
# vim:set shiftwidth=4 softtabstop=4 expandtab:
# vim:set shiftwidth=4 softtabstop=4 expandtab:
idlc/test/parser/makefile.mk
deleted
100644 → 0
Dosyayı görüntüle @
4ceba059
#
# 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/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
PRJ
:=
..
$/
..
PRJNAME
:=
idlc
TARGET
:=
test_parser
.INCLUDE
:
settings.mk
.INCLUDE
:
target.mk
ALLTAR
:
test
test .PHONY
:
$(EXECTEST)
attribute.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
constant.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
constructor.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
interfaceinheritance.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
methodoverload.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
polystruct.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
published.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
struct.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
$(EXECTEST)
typedef.tests
$(BIN)/idlc$(EXECPOST)
\
-O
$(MISC)/$(TARGET)
-stdin
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