added clang section in installation guide
[deliverable/titan.core.git] / etc / Makefile
1 ##############################################################################
2 # Copyright (c) 2000-2016 Ericsson Telecom AB
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Eclipse Public License v1.0
5 # which accompanies this distribution, and is available at
6 # http://www.eclipse.org/legal/epl-v10.html
7 #
8 # Contributors:
9 # Baji, Laszlo
10 # Balasko, Jeno
11 # Baranyi, Botond
12 # Czimbalmos, Eduard
13 # Delic, Adam
14 # Kovacs, Ferenc
15 # Kovacs, Zoltan
16 # Ormandi, Matyas
17 # Raduly, Csaba
18 # Szabados, Kristof
19 # Szabo, Janos Zoltan – initial implementation
20 # Szalai, Endre
21 # Torpis, Zsolt
22 #
23 ##############################################################################
24 # Makefile for installing the nedit and xemacs additions
25
26 TOP := ..
27 include ../Makefile.cfg
28
29 NEDIT_FILES := $(addprefix nedit/, $(addsuffix .pats, \
30 ttcn3 ttcn3_config ttcn3_log asn1))
31
32 XEMACS_FILES := $(addprefix xemacs/, ttcn3.el ttcn3-indent.el ttcn3-mode-init.el ttcn3-check-init.el ttcn3-cfg.el \
33 asn1-mode.el asn1-mode-1.0-pkg.tar.gz clearcase-1.08-pkg.tar.gz README.xemacs)
34
35 SKELETON_FILES := $(addprefix skeleton/, $(addsuffix .skeleton, \
36 altstep asn1_module component_type constant control_part data_type function \
37 import_part module_param port_type signature template testcase ttcn3_module))
38
39 XSD_FILES := $(addprefix xsd/, TPD.xsd)
40
41 install:
42 ifdef MINGW
43 @echo Skipped ${CURDIR} for MinGW
44 else
45 mkdir -p $(ETCDIR)/xsd
46 cp $(XSD_FILES) $(ETCDIR)/xsd
47 mkdir -p $(ETCDIR)/asciiart
48 # cp asciiart/*.txt $(ETCDIR)/asciiart
49 mkdir -p $(ETCDIR)/scripts
50 cp scripts/*.py $(ETCDIR)/scripts
51 cp scripts/ttcn3_archive $(BINDIR)
52 endif
This page took 0.031706 seconds and 5 git commands to generate.