d24f964790917179304682512872b53d1bf7be33
[deliverable/titan.core.git] / etc / Makefile
1 ###############################################################################
2 # Copyright (c) 2000-2014 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 # Makefile for installing the nedit and xemacs additions
9
10 TOP := ..
11 include ../Makefile.cfg
12
13 NEDIT_FILES := $(addprefix nedit/, $(addsuffix .pats, \
14 ttcn3 ttcn3_config ttcn3_log asn1))
15
16 XEMACS_FILES := $(addprefix xemacs/, ttcn3.el ttcn3-indent.el ttcn3-mode-init.el ttcn3-check-init.el ttcn3-cfg.el \
17 asn1-mode.el asn1-mode-1.0-pkg.tar.gz clearcase-1.08-pkg.tar.gz README.xemacs)
18
19 SKELETON_FILES := $(addprefix skeleton/, $(addsuffix .skeleton, \
20 altstep asn1_module component_type constant control_part data_type function \
21 import_part module_param port_type signature template testcase ttcn3_module))
22
23 XSD_FILES := $(addprefix xsd/, TPD.xsd)
24
25 install:
26 ifdef MINGW
27 @echo Skipped ${CURDIR} for MinGW
28 else
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
35 endif
This page took 0.073225 seconds and 4 git commands to generate.