Sync with 5.4.0
[deliverable/titan.core.git] / etc / Makefile
CommitLineData
970ed795 1###############################################################################
3abe9331 2# Copyright (c) 2000-2015 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
7###############################################################################
8# Makefile for installing the nedit and xemacs additions
9
10TOP := ..
11include ../Makefile.cfg
12
13NEDIT_FILES := $(addprefix nedit/, $(addsuffix .pats, \
14ttcn3 ttcn3_config ttcn3_log asn1))
15
16XEMACS_FILES := $(addprefix xemacs/, ttcn3.el ttcn3-indent.el ttcn3-mode-init.el ttcn3-check-init.el ttcn3-cfg.el \
17asn1-mode.el asn1-mode-1.0-pkg.tar.gz clearcase-1.08-pkg.tar.gz README.xemacs)
18
19SKELETON_FILES := $(addprefix skeleton/, $(addsuffix .skeleton, \
20altstep asn1_module component_type constant control_part data_type function \
21import_part module_param port_type signature template testcase ttcn3_module))
22
23XSD_FILES := $(addprefix xsd/, TPD.xsd)
24
25install:
26ifdef MINGW
27 @echo Skipped ${CURDIR} for MinGW
28else
29 mkdir -p $(ETCDIR)/xsd
30 cp $(XSD_FILES) $(ETCDIR)/xsd
31 mkdir -p $(ETCDIR)/asciiart
32# cp asciiart/*.txt $(ETCDIR)/asciiart
33 mkdir -p $(ETCDIR)/scripts
34 cp scripts/*.py $(ETCDIR)/scripts
af710487 35 cp scripts/ttcn3_archive.pl $(BINDIR)
970ed795 36endif
This page took 0.025016 seconds and 5 git commands to generate.