forked from szberes/titan.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
113 lines (93 loc) · 2.71 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
##############################################################################
# Copyright (c) 2000-2016 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#
# Baji, Laszlo
# Balasko, Jeno
# Delic, Adam
# Forstner, Matyas
# Godar, Marton
# Horvath, Gabriella
# Koppany, Csaba
# Kovacs, Ferenc
# Kovacs, Zoltan
# Kremer, Peter
# Lovassy, Arpad
# Ormandi, Matyas
# Pilisi, Gergely
# Raduly, Csaba
# Szabados, Kristof
# Szabo, Janos Zoltan – initial implementation
# Torpis, Zsolt
# Zalanyi, Balazs Andor
#
##############################################################################
# Main Makefile for the TTCN-3 Test Executor
# For use with GNU make only.
TOP := .
include $(TOP)/Makefile.cfg
# Dirlist for "all", "clean", "distclean"
ALLDIRS := common compiler2 repgen xsdconvert
ifndef MINGW
ALLDIRS += core core2 mctr2 loggerplugins
endif
# JNI not supported on Cygwin or Mingw
ifneq ($(PLATFORM), WIN32)
ifeq ($(JNI), yes)
ALLDIRS += JNI
endif
endif
#ALLDIRS += ctags
# 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:
compiler2/compiler -v
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