added warning for when the buffer is not empty after decoding in decmatch
[deliverable/titan.core.git] / regression_test / ASN1 / hyphen / 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# Balasko, Jeno
10# Delic, Adam
11# Koppany, Csaba
12# Kovacs, Ferenc
13# Kulcsar, Endre
14# Raduly, Csaba
15# Szabados, Kristof
16# Szabo, Janos Zoltan – initial implementation
17#
18##############################################################################
970ed795
EL
19TOPDIR := ../..
20include $(TOPDIR)/Makefile.regression
21
22.SUFFIXES: .ttcn .asn .hh
23.PHONY: all clean dep run
24
25TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
26
27ASN1_MODULES = Test284.asn
28
29GENERATED_SOURCES = $(ASN1_MODULES:.asn=.cc)
30GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
31ifdef CODE_SPLIT
32GENERATED_SOURCES := $(foreach file, $(GENERATED_SOURCES:.cc=), $(addprefix $(file), .cc _seq.cc _set.cc _seqof.cc _setof.cc _union.cc))
33endif
34
35all: $(GENERATED_SOURCES)
36
37.asn.cc .asn.hh:
38 $(TTCN3_COMPILER) $<
39
40clean distclean:
41 $(RM) $(GENERATED_HEADERS) $(GENERATED_SOURCES) Makefile.bak
42
43dep:
44
45run: $(GENERATED_SOURCES)
46 $(ABS_SRC)/hyphen
This page took 0.040738 seconds and 5 git commands to generate.