Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
titan.core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse Titan
titan.core
Commits
c902f2cc
Commit
c902f2cc
authored
8 years ago
by
Elemer Lelik
Browse files
Options
Downloads
Patches
Plain Diff
Makefile reverted
parent
6dffac8d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+93
-20
93 additions, 20 deletions
Makefile
with
93 additions
and
20 deletions
Makefile
+
93
−
20
View file @
c902f2cc
...
@@ -6,34 +6,107 @@
...
@@ -6,34 +6,107 @@
# http://www.eclipse.org/legal/epl-v10.html
# http://www.eclipse.org/legal/epl-v10.html
#
#
# Contributors:
# Contributors:
# Kirjak, Adrien
#
# Baji, Laszlo
# Balasko, Jeno
# Delic, Adam
# Forstner, Matyas
# Godar, Marton
# Horvath, Gabriella
# Koppany, Csaba
# Kovacs, Ferenc
# Kovacs, Zoltan
# Kremer, Peter
# Lovassy, Arpad
# Ormandi, Matyas
# Raduly, Csaba
# Szabados, Kristof
# Szabo, Janos Zoltan – initial implementation
# Torpis, Zsolt
# Zalanyi, Balazs Andor
#
#
# not ready
##############################################################################
##############################################################################
#
TOPDIR := ../..
#
Main Makefile for the TTCN-3 Test Executor
#
include $(TOPDIR)/Makefile.regression
#
For use with GNU make only.
#ifdef LCOV
TOP
:=
.
#COVERAGE_FLAG := -C
include
$(TOP)/Makefile.cfg
#endif
MAKE
:=
make
# Dirlist for "all", "clean", "distclean"
ALLDIRS
:=
common compiler2 repgen xsdconvert
MAKECLEAN
:=
make clean
ifndef
MINGW
ALLDIRS
+=
core core2 mctr2 loggerplugins
endif
run
:
# JNI not supported on Cygwin or Mingw
$(
TTCN3_DIR
)
/bin/ttcn3_makefilegen
-f
-t
pos_conf_tests.tpd
&&
\
ifneq
($(PLATFORM), WIN32)
cd
bin
&&
\
ifeq
($(JNI), yes)
$(
MAKE
)
&&
\
ALLDIRS
+=
JNI
$(
TTCN3_DIR
)
/bin/ttcn3_start pos_conf_tests pos_conf_tests.cfg
&&
\
endif
cd
..
endif
clean
:
#ALLDIRS += ctags
cd
bin
&&
\
$(
MAKECLEAN
)
&&
\
cd
..
.PHONY
:
all clean run
# Dirlist for "dep", "tags"
DEPDIRS
:=
$(
ALLDIRS
)
ALLDIRS
+=
usrguide
# Dirlist for "install"
INSTALLDIRS
:=
$(
ALLDIRS
)
INSTALLDIRS
+=
etc
help
hello
###########################################################
all run clean distclean
:
@
for
dir
in
$(
ALLDIRS
);
do
\
$(
MAKE
)
-C
$$
dir
$@
||
exit
;
\
done
dep tags
:
@
for
dir
in
$(
DEPDIRS
);
do
\
$(
MAKE
)
-C
$$
dir
$@
||
exit
;
\
done
install
:
if
test
-h
$(
TTCN3_DIR
);
then
\
echo
$(
TTCN3_DIR
)
is a symlink, you cannot be serious
;
exit
1
;
fi
ifdef
MINGW
$(
info cross your fingers...
)
endif
-
rm
-rf
$(
TTCN3_DIR
)
ifeq
($(INCLUDE_EXTERNAL_LIBS), yes)
mkdir
-p
$(
TTCN3_DIR
)
/lib
cp
-d
$(
OPENSSL_DIR
)
/lib/libcrypto.so
*
$(
TTCN3_DIR
)
/lib
cp
-d
$(
XMLDIR
)
/lib/libxml2.so
*
$(
TTCN3_DIR
)
/lib
endif
@
for
dir
in
$(
INSTALLDIRS
);
do
\
$(
MAKE
)
-C
$$
dir
$@
||
exit
;
\
done
ifeq
($(LICENSING), yes)
mkdir
-p
$(
ETCDIR
)
/licensegen
cp
licensegen/license.dat
$(
ETCDIR
)
/license
endif
chmod
-R
+r,go-w
$(
TTCN3_DIR
)
# check is the standard GNU target for running tests
# (avoids clash with shell builtin 'test')
check
:
make
-C
regression_test report
ifneq
(,$(findstring prereq,$(MAKECMDGOALS)))
# Export all variables into the environment for the prereq target
export
endif
# no need to include Makefile.genrules
.PHONY
:
all clean distclean dep tags install psi dox check confess prereq
Makefile.personal
:
SHELL:=/bin/bash
Makefile.personal
:
if
[
-f
$(
TOP
)
/makefiles/
$@
.
$${
HOSTNAME:
=
$${
COMPUTERNAME
}}
]
;
then
ln
-s
$(
TOP
)
/makefiles/
$@
.
$${
HOSTNAME
}
$@
;
else
touch
$@
;
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment