added new warning suppressing switch to makefilegen (-S), reworked -w switch (Bug...
[deliverable/titan.core.git] / etc / Makefile
CommitLineData
d44e3c4f 1##############################################################################
2# Copyright (c) 2000-2016 Ericsson Telecom AB
970ed795
EL
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
d44e3c4f 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##############################################################################
970ed795
EL
24# Makefile for installing the nedit and xemacs additions
25
26TOP := ..
27include ../Makefile.cfg
28
29NEDIT_FILES := $(addprefix nedit/, $(addsuffix .pats, \
30ttcn3 ttcn3_config ttcn3_log asn1))
31
32XEMACS_FILES := $(addprefix xemacs/, ttcn3.el ttcn3-indent.el ttcn3-mode-init.el ttcn3-check-init.el ttcn3-cfg.el \
33asn1-mode.el asn1-mode-1.0-pkg.tar.gz clearcase-1.08-pkg.tar.gz README.xemacs)
34
35SKELETON_FILES := $(addprefix skeleton/, $(addsuffix .skeleton, \
36altstep asn1_module component_type constant control_part data_type function \
37import_part module_param port_type signature template testcase ttcn3_module))
38
39XSD_FILES := $(addprefix xsd/, TPD.xsd)
40
41install:
42ifdef MINGW
43 @echo Skipped ${CURDIR} for MinGW
44else
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
51endif
This page took 0.029117 seconds and 5 git commands to generate.