Titan Core Initial Contribution
[deliverable/titan.core.git] / regression_test / ASN1 / hyphen / Makefile
CommitLineData
970ed795
EL
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###############################################################################
8TOPDIR := ../..
9include $(TOPDIR)/Makefile.regression
10
11.SUFFIXES: .ttcn .asn .hh
12.PHONY: all clean dep run
13
14TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
15
16ASN1_MODULES = Test284.asn
17
18GENERATED_SOURCES = $(ASN1_MODULES:.asn=.cc)
19GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
20ifdef CODE_SPLIT
21GENERATED_SOURCES := $(foreach file, $(GENERATED_SOURCES:.cc=), $(addprefix $(file), .cc _seq.cc _set.cc _seqof.cc _setof.cc _union.cc))
22endif
23
24all: $(GENERATED_SOURCES)
25
26.asn.cc .asn.hh:
27 $(TTCN3_COMPILER) $<
28
29clean distclean:
30 $(RM) $(GENERATED_HEADERS) $(GENERATED_SOURCES) Makefile.bak
31
32dep:
33
34run: $(GENERATED_SOURCES)
35 $(ABS_SRC)/hyphen
This page took 0.036101 seconds and 5 git commands to generate.