cf752b7248d2e51763d5ea5f994f37e586e86bd4
[deliverable/titan.core.git] / regression_test / ASN1 / enum2 / Makefile
1 ##############################################################################
2 # Copyright (c) 2000-2016 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 # 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 ##############################################################################
19 TOPDIR := ../..
20 include $(TOPDIR)/Makefile.regression
21
22 .SUFFIXES: .ttcn .asn .hh
23 .PHONY: all clean dep run
24
25 TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
26
27 ASN1_MODULES = Test25.asn
28
29 GENERATED_SOURCES = $(ASN1_MODULES:.asn=.cc)
30 GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
31 ifdef CODE_SPLIT
32 GENERATED_SOURCES := $(foreach file, $(GENERATED_SOURCES:.cc=), $(addprefix $(file), .cc _seq.cc _set.cc _seqof.cc _setof.cc _union.cc))
33 endif
34
35 all: $(GENERATED_SOURCES)
36
37 .asn.cc .asn.hh:
38 $(TTCN3_COMPILER) $<
39
40 clean distclean:
41 $(RM) $(GENERATED_HEADERS) $(GENERATED_SOURCES) Makefile.bak
42
43 dep:
44
45 run: $(GENERATED_SOURCES)
46 $(ABS_SRC)/enum2
This page took 0.03046 seconds and 4 git commands to generate.