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
|
##############################################################################
# Copyright (c) 2000-2021 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
#
# Contributors:
# Baji, Laszlo
# Balasko, Jeno
# Baranyi, Botond
# Feher, Csaba
# Forstner, Matyas
# Kovacs, Ferenc
# Kovacs, Zoltan
# Pilisi, Gergely
# Raduly, Csaba
# Szabados, Kristof
# Szabo, Janos Zoltan – initial implementation
# Szalai, Endre
#
##############################################################################
# Makefile for installing the docs and html help pages
TOP := ..
include ../Makefile.cfg
CHMDIR := chm
MAIN_HTML_FILES := titan_main.html titan_index.html
MAIN_CHM_FILES := titan_index.html titan_online.html titan.hhp titan.hhc
INFO_FILES := $(addprefix info/, $(addsuffix .html, \
BNF action activate address alive all alt altstep and and4b any \
anytype apply bit2hex bit2int bit2oct bit2str bitstring boolean break call \
case catch char char2int char2oct charstring check clear complement \
component connect const continue control create deactivate decode_base64 decvalue decvalue_unichar default derefers \
disconnect display do done else encode encode_base64 encvalue encvalue_unichar enum2int enumerated error except \
exception execute extension external fail false float float2int \
float2str for from function friend get_stringencoding getcall getreply getverdict goto group \
hex2bit hex2int hex2oct hex2str hexstring if ifpresent import in \
inconc infinity inout int2bit int2char int2enum int2float int2hex int2oct \
int2str int2unichar integer interleave isbound ischosen ispresent isvalue kill killed \
label language length lengthof log log2str map match message mixed mod \
modifies module modulepar mtc noblock none not not4b now nowait null objid \
oct2bit oct2char oct2hex oct2int oct2str oct2unichar octetstring of omit on \
operators optional or or4b out override param pass pattern permutation \
port public private procedure raise read realtime receive record recursive refers regexp rem remove_bom repeat \
replace reply return rnd running runs select self send sender set setencode setstate setverdict \
signature sizeof start stop str2bit str2float str2hex \
str2int str2oct subset substr superset system template testcase testcasename \
timeout timer timestamp to trigger true type unichar2char unichar2int unichar2oct union universal unmap \
value valueof var variant verdicttype while with xor xor4b profiler))
IMAGE_FILES := $(addprefix images/, $(addsuffix .jpg, ao left right up)) images/titan_transparent.gif
DOC_FILES := $(addprefix docs/, $(addsuffix .pdf, \
naming))
USERGUIDES := $(addprefix ../../doc/, $(addsuffix .pdf, \
apiguide userguide installationguide referenceguide releasenotes))
all run: ;
install:
ifdef MINGW
@echo Skipped ${CURDIR} for MinGW
else
mkdir -p $(BINDIR)
cp ttcn3_help $(BINDIR)
chmod +x $(BINDIR)/ttcn3_help
mkdir -p $(HELPDIR)
cp $(MAIN_HTML_FILES) $(HELPDIR)
mkdir -p $(HELPDIR)/info
cp $(INFO_FILES) $(HELPDIR)/info
mkdir -p $(HELPDIR)/images
cp $(IMAGE_FILES) $(HELPDIR)/images
mkdir -p $(HELPDIR)/docs
cp $(DOC_FILES) $(HELPDIR)/docs
ifeq (GEN_PDF,yes)
ln -s $(USERGUIDES) $(HELPDIR)/docs
endif
endif
chm.tgz:
$(RM) -r $(CHMDIR)
mkdir -p $(CHMDIR)
cp $(MAIN_CHM_FILES) $(CHMDIR)
mkdir $(CHMDIR)/info
cp $(INFO_FILES) $(CHMDIR)/info
mkdir -p $(CHMDIR)/images
cp $(IMAGE_FILES) $(CHMDIR)/images
./chm_refact.sh
tar cfz $@ chm
clean:
$(RM) -rf $(CHMDIR) chm.tgz
|