blob: ffc0aeb090ba4b8f1c5230548c93022cc4e1a09a [file] [log] [blame]
Harald Welteac359802017-04-12 12:13:44 +02001# This Makefile was generated by the Makefile Generator
2# of the TTCN-3 Test Executor version 1.7.pre1 build 7
3# for Gabor Bettesch (ethgbh@mwux018) on Tue May 29 11:06:47 2007
4
5# Copyright 2000-2007 Test Competence Center, Ericsson R & D, Hungary
6# For trouble reporting use the tool MTTSMS.
7# For TR writers guide please visit the web page: http://ttcn.ericsson.se
8
9# The following make commands are available:
10# - make, make all Builds the executable test suite.
11# - make archive Archives all source files.
12# - make check Checks the semantics of TTCN-3 and ASN.1 modules.
13# - make clean Removes all generated files.
14# - make compile Translates TTCN-3 and ASN.1 modules to C++.
15# - make dep Creates/updates dependency list.
16# - make objects Builds the object files without linking the executable.
17# - make tags Creates/updates tags file using ctags.
18
19# WARNING! This Makefile can be used with GNU make only.
20# Other versions of make may report syntax errors in it.
21
22#
23# Do NOT touch this line...
24#
25.PHONY: all archive check clean dep objects
26
27#
28# Set these variables...
29#
30
31# The path of your TTCN-3 Test Executor installation:
32# Uncomment this line to override the environment variable.
33# TTCN3_DIR =
34
35# Your platform: (SOLARIS, SOLARIS8, LINUX, FREEBSD or WIN32)
36PLATFORM = LINUX
37
38# Your C++ compiler:
39CXX = g++
40
41# Flags for the C++ preprocessor (and makedepend as well):
42CPPFLAGS = -D$(PLATFORM) -DTARGET_TEST -I$(TTCN3_DIR)/include -I$(SCTP_DIR)/include
43
44# Flags for the C++ compiler:
45CXXFLAGS = -Wall
46
47# Flags for the linker:
48LDFLAGS =
49
50# Flags for the TTCN-3 and ASN.1 compiler:
51COMPILER_FLAGS = -L
52
53# Execution mode: (either ttcn3 or ttcn3-parallel)
54TTCN3_LIB = ttcn3-parallel
55
56# The path of your OpenSSL installation:
57# If you do not have your own one, leave it unchanged.
58OPENSSL_DIR = $(TTCN3_DIR)
59
60# Directory to store the archived source files:
61ARCHIVE_DIR = backup
62
63SCTP_DIR = /usr/local/lksctp-tools-1.0.6
64#
65# You may change these variables. Add your files if necessary...
66#
67
68# TTCN-3 modules of this project:
69TTCN3_MODULES = General_Types.ttcn BICC_Types.ttcn M3UA_Emulation.ttcn M3UA_Emulation_Test.ttcn M3UA_Types.ttcn SCTPasp_PortType.ttcn SCTPasp_Types.ttcn MTP3asp_Types.ttcn
70#MTP3asp_PortType.ttcn
71# ASN.1 modules of this project:
72ASN1_MODULES =
73
74# C++ source & header files generated from the TTCN-3 & ASN.1 modules of
75# this project:
76GENERATED_SOURCES = $(TTCN3_MODULES:.ttcn=.cc) $(ASN1_MODULES:.asn=.cc)
77GENERATED_HEADERS = $(GENERATED_SOURCES:.cc=.hh)
78
79# C/C++ Source & header files of Test Ports, external functions and
80# other modules:
81USER_SOURCES = Abstract_Socket.cc BICC_EncDec.cc SCTPasp_PT.cc MTP3asp_EncDec.cc
82USER_HEADERS = Abstract_Socket.hh SCTPasp_PT.hh
83#MTP3asp_PT.hh MTP3asp_PT.cc
84# Object files of this project that are needed for the executable test suite:
85OBJECTS = $(GENERATED_SOURCES:.cc=.o) $(USER_SOURCES:.cc=.o)
86
87# Other files of the project (Makefile, configuration files, etc.)
88# that will be added to the archived source files:
89OTHER_FILES = m3ua_emu.cfg Makefile
90
91# The name of the executable test suite:
92TARGET = M3UA_Emulation_Test
93
94#
95# Do not modify these unless you know what you are doing...
96# Platform specific additional libraries:
97#
98SOLARIS_LIBS = -lsocket -lnsl
99SOLARIS8_LIBS = -lsocket -lnsl
100LINUX_LIBS =
101FREEBSD_LIBS =
102WIN32_LIBS =
103
104#
105# Rules for building the executable...
106#
107
108all: $(TARGET) ;
109
110objects: $(OBJECTS) ;
111
112$(TARGET): $(OBJECTS)
113 $(CXX) $(LDFLAGS) -o $@ $^ \
114 -L$(TTCN3_DIR)/lib -L$(SCTP_DIR)/lib -l$(TTCN3_LIB) \
115 -L$(OPENSSL_DIR)/lib -lcrypto $($(PLATFORM)_LIBS)
116
117.cc.o .c.o:
118 $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
119
120$(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
121 @if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
122
123check: $(TTCN3_MODULES) $(ASN1_MODULES)
124 $(TTCN3_DIR)/bin/compiler -s $(COMPILER_FLAGS) $^
125
126compile: $(TTCN3_MODULES) $(ASN1_MODULES)
127 $(TTCN3_DIR)/bin/compiler $(COMPILER_FLAGS) $^ - $?
128 touch $@
129
130browserdata.dat: $(TTCN3_MODULES) $(ASN1_MODULES)
131 $(TTCN3_DIR)/bin/compiler -B -s $(COMPILER_FLAGS) $^
132
133tags: $(TTCN3_MODULES) $(ASN1_MODULES) \
134$(USER_HEADERS) $(USER_SOURCES)
135 $(TTCN3_DIR)/bin/ctags_ttcn3 --line-directives=yes $^
136
137clean:
138 -$(RM) $(TARGET) $(OBJECTS) $(GENERATED_HEADERS) \
139 $(GENERATED_SOURCES) compile \
140 browserdata.dat tags *.log
141
142dep: $(GENERATED_SOURCES) $(USER_SOURCES)
143 makedepend $(CPPFLAGS) $^
144
145archive:
146 mkdir -p $(ARCHIVE_DIR)
147 tar -cvhf - $(TTCN3_MODULES) $(ASN1_MODULES) \
148 $(USER_HEADERS) $(USER_SOURCES) $(OTHER_FILES) \
149 | gzip >$(ARCHIVE_DIR)/`basename $(TARGET) .exe`-`date '+%y%m%d-%H%M'`.tgz
150
151#
152# Add your rules here if necessary...
153#
154
155# DO NOT DELETE
156
157General_Types.o: General_Types.hh /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
158General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
159General_Types.o: /usr/include/string.h /usr/include/features.h
160General_Types.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
161General_Types.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
162General_Types.o: /usr/include/stdio.h /usr/include/bits/types.h
163General_Types.o: /usr/include/bits/typesizes.h /usr/include/libio.h
164General_Types.o: /usr/include/_G_config.h /usr/include/wchar.h
165General_Types.o: /usr/include/bits/wchar.h /usr/include/gconv.h
166General_Types.o: /usr/include/bits/stdio_lim.h
167General_Types.o: /usr/include/bits/sys_errlist.h
168General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
169General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
170General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
171General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
172General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
173General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
174General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
175General_Types.o: /usr/include/stdlib.h /usr/include/sys/types.h
176General_Types.o: /usr/include/time.h /usr/include/endian.h
177General_Types.o: /usr/include/bits/endian.h /usr/include/sys/select.h
178General_Types.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
179General_Types.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
180General_Types.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
181General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
182General_Types.o: /usr/include/sys/time.h
183General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
184General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
185General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
186General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
187General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
188General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
189General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
190General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
191General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
192General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
193General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
194General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
195General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
196General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
197General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
198General_Types.o: /usr/include/regex.h
199General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
200General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
201General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
202General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
203General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
204General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
205General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
206General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
207General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
208General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
209General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
210General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
211General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
212General_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
213BICC_Types.o: BICC_Types.hh General_Types.hh
214BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
215BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
216BICC_Types.o: /usr/include/string.h /usr/include/features.h
217BICC_Types.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
218BICC_Types.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
219BICC_Types.o: /usr/include/stdio.h /usr/include/bits/types.h
220BICC_Types.o: /usr/include/bits/typesizes.h /usr/include/libio.h
221BICC_Types.o: /usr/include/_G_config.h /usr/include/wchar.h
222BICC_Types.o: /usr/include/bits/wchar.h /usr/include/gconv.h
223BICC_Types.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h
224BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
225BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
226BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
227BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
228BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
229BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
230BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh /usr/include/stdlib.h
231BICC_Types.o: /usr/include/sys/types.h /usr/include/time.h
232BICC_Types.o: /usr/include/endian.h /usr/include/bits/endian.h
233BICC_Types.o: /usr/include/sys/select.h /usr/include/bits/select.h
234BICC_Types.o: /usr/include/bits/sigset.h /usr/include/bits/time.h
235BICC_Types.o: /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h
236BICC_Types.o: /usr/include/alloca.h
237BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
238BICC_Types.o: /usr/include/sys/time.h
239BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
240BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
241BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
242BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
243BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
244BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
245BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
246BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
247BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
248BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
249BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
250BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
251BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
252BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
253BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
254BICC_Types.o: /usr/include/regex.h
255BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
256BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
257BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
258BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
259BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
260BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
261BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
262BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
263BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
264BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
265BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
266BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
267BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
268BICC_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
269M3UA_Emulation.o: M3UA_Emulation.hh M3UA_Types.hh General_Types.hh
270M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
271M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
272M3UA_Emulation.o: /usr/include/string.h /usr/include/features.h
273M3UA_Emulation.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
274M3UA_Emulation.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
275M3UA_Emulation.o: /usr/include/stdio.h /usr/include/bits/types.h
276M3UA_Emulation.o: /usr/include/bits/typesizes.h /usr/include/libio.h
277M3UA_Emulation.o: /usr/include/_G_config.h /usr/include/wchar.h
278M3UA_Emulation.o: /usr/include/bits/wchar.h /usr/include/gconv.h
279M3UA_Emulation.o: /usr/include/bits/stdio_lim.h
280M3UA_Emulation.o: /usr/include/bits/sys_errlist.h
281M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
282M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
283M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
284M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
285M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
286M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
287M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
288M3UA_Emulation.o: /usr/include/stdlib.h /usr/include/sys/types.h
289M3UA_Emulation.o: /usr/include/time.h /usr/include/endian.h
290M3UA_Emulation.o: /usr/include/bits/endian.h /usr/include/sys/select.h
291M3UA_Emulation.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
292M3UA_Emulation.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
293M3UA_Emulation.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
294M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
295M3UA_Emulation.o: /usr/include/sys/time.h
296M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
297M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
298M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
299M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
300M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
301M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
302M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
303M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
304M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
305M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
306M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
307M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
308M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
309M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
310M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
311M3UA_Emulation.o: /usr/include/regex.h
312M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
313M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
314M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
315M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
316M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
317M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
318M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
319M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
320M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
321M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
322M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
323M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
324M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
325M3UA_Emulation.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
326M3UA_Emulation.o: SCTPasp_PortType.hh SCTPasp_Types.hh SCTPasp_PT.hh
327M3UA_Emulation.o: /usr/include/sys/socket.h /usr/include/sys/uio.h
328M3UA_Emulation.o: /usr/include/bits/uio.h /usr/include/bits/socket.h
329M3UA_Emulation.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
330M3UA_Emulation.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
331M3UA_Emulation.o: /usr/include/bits/posix2_lim.h /usr/include/bits/sockaddr.h
332M3UA_Emulation.o: /usr/include/asm/socket.h /usr/include/asm/sockios.h
333M3UA_Emulation.o: /usr/include/netinet/in.h /usr/include/stdint.h
334M3UA_Emulation.o: /usr/include/bits/in.h /usr/include/bits/byteswap.h
335M3UA_Emulation.o: /usr/local/lksctp-tools-1.0.6/include/netinet/sctp.h
336M3UA_Emulation.o: /usr/include/linux/types.h /usr/include/linux/posix_types.h
337M3UA_Emulation.o: /usr/include/linux/stddef.h /usr/include/linux/compiler.h
338M3UA_Emulation.o: /usr/include/asm/posix_types.h /usr/include/asm/types.h
339M3UA_Emulation.o: MTP3asp_Types.hh
340M3UA_Emulation_Test.o: M3UA_Emulation_Test.hh BICC_Types.hh General_Types.hh
341M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
342M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
343M3UA_Emulation_Test.o: /usr/include/string.h /usr/include/features.h
344M3UA_Emulation_Test.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
345M3UA_Emulation_Test.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
346M3UA_Emulation_Test.o: /usr/include/stdio.h /usr/include/bits/types.h
347M3UA_Emulation_Test.o: /usr/include/bits/typesizes.h /usr/include/libio.h
348M3UA_Emulation_Test.o: /usr/include/_G_config.h /usr/include/wchar.h
349M3UA_Emulation_Test.o: /usr/include/bits/wchar.h /usr/include/gconv.h
350M3UA_Emulation_Test.o: /usr/include/bits/stdio_lim.h
351M3UA_Emulation_Test.o: /usr/include/bits/sys_errlist.h
352M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
353M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
354M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
355M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
356M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
357M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
358M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
359M3UA_Emulation_Test.o: /usr/include/stdlib.h /usr/include/sys/types.h
360M3UA_Emulation_Test.o: /usr/include/time.h /usr/include/endian.h
361M3UA_Emulation_Test.o: /usr/include/bits/endian.h /usr/include/sys/select.h
362M3UA_Emulation_Test.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
363M3UA_Emulation_Test.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
364M3UA_Emulation_Test.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
365M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
366M3UA_Emulation_Test.o: /usr/include/sys/time.h
367M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
368M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
369M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
370M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
371M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
372M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
373M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
374M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
375M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
376M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
377M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
378M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
379M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
380M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
381M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
382M3UA_Emulation_Test.o: /usr/include/regex.h
383M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
384M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
385M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
386M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
387M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
388M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
389M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
390M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
391M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
392M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
393M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
394M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
395M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
396M3UA_Emulation_Test.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
397M3UA_Emulation_Test.o: M3UA_Emulation.hh M3UA_Types.hh SCTPasp_PortType.hh
398M3UA_Emulation_Test.o: SCTPasp_Types.hh SCTPasp_PT.hh
399M3UA_Emulation_Test.o: /usr/include/sys/socket.h /usr/include/sys/uio.h
400M3UA_Emulation_Test.o: /usr/include/bits/uio.h /usr/include/bits/socket.h
401M3UA_Emulation_Test.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
402M3UA_Emulation_Test.o: /usr/include/bits/local_lim.h
403M3UA_Emulation_Test.o: /usr/include/linux/limits.h
404M3UA_Emulation_Test.o: /usr/include/bits/posix2_lim.h
405M3UA_Emulation_Test.o: /usr/include/bits/sockaddr.h /usr/include/asm/socket.h
406M3UA_Emulation_Test.o: /usr/include/asm/sockios.h /usr/include/netinet/in.h
407M3UA_Emulation_Test.o: /usr/include/stdint.h /usr/include/bits/in.h
408M3UA_Emulation_Test.o: /usr/include/bits/byteswap.h
409M3UA_Emulation_Test.o: /usr/local/lksctp-tools-1.0.6/include/netinet/sctp.h
410M3UA_Emulation_Test.o: /usr/include/linux/types.h
411M3UA_Emulation_Test.o: /usr/include/linux/posix_types.h
412M3UA_Emulation_Test.o: /usr/include/linux/stddef.h
413M3UA_Emulation_Test.o: /usr/include/linux/compiler.h
414M3UA_Emulation_Test.o: /usr/include/asm/posix_types.h
415M3UA_Emulation_Test.o: /usr/include/asm/types.h MTP3asp_Types.hh
416M3UA_Types.o: M3UA_Types.hh General_Types.hh
417M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
418M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
419M3UA_Types.o: /usr/include/string.h /usr/include/features.h
420M3UA_Types.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
421M3UA_Types.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
422M3UA_Types.o: /usr/include/stdio.h /usr/include/bits/types.h
423M3UA_Types.o: /usr/include/bits/typesizes.h /usr/include/libio.h
424M3UA_Types.o: /usr/include/_G_config.h /usr/include/wchar.h
425M3UA_Types.o: /usr/include/bits/wchar.h /usr/include/gconv.h
426M3UA_Types.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h
427M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
428M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
429M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
430M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
431M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
432M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
433M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh /usr/include/stdlib.h
434M3UA_Types.o: /usr/include/sys/types.h /usr/include/time.h
435M3UA_Types.o: /usr/include/endian.h /usr/include/bits/endian.h
436M3UA_Types.o: /usr/include/sys/select.h /usr/include/bits/select.h
437M3UA_Types.o: /usr/include/bits/sigset.h /usr/include/bits/time.h
438M3UA_Types.o: /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h
439M3UA_Types.o: /usr/include/alloca.h
440M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
441M3UA_Types.o: /usr/include/sys/time.h
442M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
443M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
444M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
445M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
446M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
447M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
448M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
449M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
450M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
451M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
452M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
453M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
454M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
455M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
456M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
457M3UA_Types.o: /usr/include/regex.h
458M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
459M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
460M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
461M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
462M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
463M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
464M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
465M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
466M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
467M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
468M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
469M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
470M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
471M3UA_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
472SCTPasp_PortType.o: SCTPasp_PortType.hh SCTPasp_Types.hh
473SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
474SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
475SCTPasp_PortType.o: /usr/include/string.h /usr/include/features.h
476SCTPasp_PortType.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
477SCTPasp_PortType.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
478SCTPasp_PortType.o: /usr/include/stdio.h /usr/include/bits/types.h
479SCTPasp_PortType.o: /usr/include/bits/typesizes.h /usr/include/libio.h
480SCTPasp_PortType.o: /usr/include/_G_config.h /usr/include/wchar.h
481SCTPasp_PortType.o: /usr/include/bits/wchar.h /usr/include/gconv.h
482SCTPasp_PortType.o: /usr/include/bits/stdio_lim.h
483SCTPasp_PortType.o: /usr/include/bits/sys_errlist.h
484SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
485SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
486SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
487SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
488SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
489SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
490SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
491SCTPasp_PortType.o: /usr/include/stdlib.h /usr/include/sys/types.h
492SCTPasp_PortType.o: /usr/include/time.h /usr/include/endian.h
493SCTPasp_PortType.o: /usr/include/bits/endian.h /usr/include/sys/select.h
494SCTPasp_PortType.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
495SCTPasp_PortType.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
496SCTPasp_PortType.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
497SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
498SCTPasp_PortType.o: /usr/include/sys/time.h
499SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
500SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
501SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
502SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
503SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
504SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
505SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
506SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
507SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
508SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
509SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
510SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
511SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
512SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
513SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
514SCTPasp_PortType.o: /usr/include/regex.h
515SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
516SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
517SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
518SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
519SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
520SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
521SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
522SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
523SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
524SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
525SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
526SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
527SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
528SCTPasp_PortType.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh SCTPasp_PT.hh
529SCTPasp_PortType.o: /usr/include/sys/socket.h /usr/include/sys/uio.h
530SCTPasp_PortType.o: /usr/include/bits/uio.h /usr/include/bits/socket.h
531SCTPasp_PortType.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
532SCTPasp_PortType.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
533SCTPasp_PortType.o: /usr/include/bits/posix2_lim.h
534SCTPasp_PortType.o: /usr/include/bits/sockaddr.h /usr/include/asm/socket.h
535SCTPasp_PortType.o: /usr/include/asm/sockios.h /usr/include/netinet/in.h
536SCTPasp_PortType.o: /usr/include/stdint.h /usr/include/bits/in.h
537SCTPasp_PortType.o: /usr/include/bits/byteswap.h
538SCTPasp_PortType.o: /usr/local/lksctp-tools-1.0.6/include/netinet/sctp.h
539SCTPasp_PortType.o: /usr/include/linux/types.h
540SCTPasp_PortType.o: /usr/include/linux/posix_types.h
541SCTPasp_PortType.o: /usr/include/linux/stddef.h /usr/include/linux/compiler.h
542SCTPasp_PortType.o: /usr/include/asm/posix_types.h /usr/include/asm/types.h
543SCTPasp_Types.o: SCTPasp_Types.hh /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
544SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
545SCTPasp_Types.o: /usr/include/string.h /usr/include/features.h
546SCTPasp_Types.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
547SCTPasp_Types.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
548SCTPasp_Types.o: /usr/include/stdio.h /usr/include/bits/types.h
549SCTPasp_Types.o: /usr/include/bits/typesizes.h /usr/include/libio.h
550SCTPasp_Types.o: /usr/include/_G_config.h /usr/include/wchar.h
551SCTPasp_Types.o: /usr/include/bits/wchar.h /usr/include/gconv.h
552SCTPasp_Types.o: /usr/include/bits/stdio_lim.h
553SCTPasp_Types.o: /usr/include/bits/sys_errlist.h
554SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
555SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
556SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
557SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
558SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
559SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
560SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
561SCTPasp_Types.o: /usr/include/stdlib.h /usr/include/sys/types.h
562SCTPasp_Types.o: /usr/include/time.h /usr/include/endian.h
563SCTPasp_Types.o: /usr/include/bits/endian.h /usr/include/sys/select.h
564SCTPasp_Types.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
565SCTPasp_Types.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
566SCTPasp_Types.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
567SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
568SCTPasp_Types.o: /usr/include/sys/time.h
569SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
570SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
571SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
572SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
573SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
574SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
575SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
576SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
577SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
578SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
579SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
580SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
581SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
582SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
583SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
584SCTPasp_Types.o: /usr/include/regex.h
585SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
586SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
587SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
588SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
589SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
590SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
591SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
592SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
593SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
594SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
595SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
596SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
597SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
598SCTPasp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
599MTP3asp_Types.o: MTP3asp_Types.hh /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
600MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
601MTP3asp_Types.o: /usr/include/string.h /usr/include/features.h
602MTP3asp_Types.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
603MTP3asp_Types.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
604MTP3asp_Types.o: /usr/include/stdio.h /usr/include/bits/types.h
605MTP3asp_Types.o: /usr/include/bits/typesizes.h /usr/include/libio.h
606MTP3asp_Types.o: /usr/include/_G_config.h /usr/include/wchar.h
607MTP3asp_Types.o: /usr/include/bits/wchar.h /usr/include/gconv.h
608MTP3asp_Types.o: /usr/include/bits/stdio_lim.h
609MTP3asp_Types.o: /usr/include/bits/sys_errlist.h
610MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
611MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
612MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
613MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
614MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
615MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
616MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
617MTP3asp_Types.o: /usr/include/stdlib.h /usr/include/sys/types.h
618MTP3asp_Types.o: /usr/include/time.h /usr/include/endian.h
619MTP3asp_Types.o: /usr/include/bits/endian.h /usr/include/sys/select.h
620MTP3asp_Types.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
621MTP3asp_Types.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
622MTP3asp_Types.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
623MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
624MTP3asp_Types.o: /usr/include/sys/time.h
625MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
626MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
627MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
628MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
629MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
630MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
631MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
632MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
633MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
634MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
635MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
636MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
637MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
638MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
639MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
640MTP3asp_Types.o: /usr/include/regex.h
641MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
642MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
643MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
644MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
645MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
646MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
647MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
648MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
649MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
650MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
651MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
652MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
653MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
654MTP3asp_Types.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
655Abstract_Socket.o: Abstract_Socket.hh /usr/include/sys/socket.h
656Abstract_Socket.o: /usr/include/features.h /usr/include/sys/cdefs.h
657Abstract_Socket.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
658Abstract_Socket.o: /usr/include/gnu/stubs-32.h /usr/include/sys/uio.h
659Abstract_Socket.o: /usr/include/sys/types.h /usr/include/bits/types.h
660Abstract_Socket.o: /usr/include/bits/typesizes.h /usr/include/time.h
661Abstract_Socket.o: /usr/include/endian.h /usr/include/bits/endian.h
662Abstract_Socket.o: /usr/include/sys/select.h /usr/include/bits/select.h
663Abstract_Socket.o: /usr/include/bits/sigset.h /usr/include/bits/time.h
664Abstract_Socket.o: /usr/include/sys/sysmacros.h
665Abstract_Socket.o: /usr/include/bits/pthreadtypes.h /usr/include/bits/uio.h
666Abstract_Socket.o: /usr/include/bits/socket.h /usr/include/limits.h
667Abstract_Socket.o: /usr/include/bits/posix1_lim.h
668Abstract_Socket.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
669Abstract_Socket.o: /usr/include/bits/posix2_lim.h
670Abstract_Socket.o: /usr/include/bits/sockaddr.h /usr/include/asm/socket.h
671Abstract_Socket.o: /usr/include/asm/sockios.h /usr/include/netinet/in.h
672Abstract_Socket.o: /usr/include/stdint.h /usr/include/bits/wchar.h
673Abstract_Socket.o: /usr/include/bits/in.h /usr/include/bits/byteswap.h
674Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
675Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
676Abstract_Socket.o: /usr/include/string.h /usr/include/stdio.h
677Abstract_Socket.o: /usr/include/libio.h /usr/include/_G_config.h
678Abstract_Socket.o: /usr/include/wchar.h /usr/include/gconv.h
679Abstract_Socket.o: /usr/include/bits/stdio_lim.h
680Abstract_Socket.o: /usr/include/bits/sys_errlist.h
681Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
682Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
683Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
684Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
685Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
686Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
687Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
688Abstract_Socket.o: /usr/include/stdlib.h /usr/include/alloca.h
689Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
690Abstract_Socket.o: /usr/include/sys/time.h
691Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
692Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
693Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
694Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
695Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
696Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
697Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
698Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
699Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
700Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
701Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
702Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
703Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
704Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
705Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
706Abstract_Socket.o: /usr/include/regex.h
707Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
708Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
709Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
710Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
711Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
712Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
713Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
714Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
715Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
716Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
717Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
718Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
719Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
720Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
721Abstract_Socket.o: /usr/include/unistd.h /usr/include/bits/posix_opt.h
722Abstract_Socket.o: /usr/include/bits/confname.h /usr/include/getopt.h
723Abstract_Socket.o: /usr/include/strings.h /usr/include/errno.h
724Abstract_Socket.o: /usr/include/bits/errno.h /usr/include/linux/errno.h
725Abstract_Socket.o: /usr/include/asm/errno.h /usr/include/asm-generic/errno.h
726Abstract_Socket.o: /usr/include/asm-generic/errno-base.h /usr/include/netdb.h
727Abstract_Socket.o: /usr/include/rpc/netdb.h /usr/include/bits/netdb.h
728Abstract_Socket.o: /usr/include/sys/stat.h /usr/include/bits/stat.h
729Abstract_Socket.o: /usr/include/netinet/tcp.h /usr/include/arpa/inet.h
730Abstract_Socket.o: /usr/include/fcntl.h /usr/include/bits/fcntl.h
731Abstract_Socket.o: /usr/local/TTCNv3-1.7.pl0/include/memory.h
732BICC_EncDec.o: BICC_Types.hh General_Types.hh
733BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
734BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
735BICC_EncDec.o: /usr/include/string.h /usr/include/features.h
736BICC_EncDec.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
737BICC_EncDec.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
738BICC_EncDec.o: /usr/include/stdio.h /usr/include/bits/types.h
739BICC_EncDec.o: /usr/include/bits/typesizes.h /usr/include/libio.h
740BICC_EncDec.o: /usr/include/_G_config.h /usr/include/wchar.h
741BICC_EncDec.o: /usr/include/bits/wchar.h /usr/include/gconv.h
742BICC_EncDec.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h
743BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
744BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
745BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
746BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
747BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
748BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
749BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh /usr/include/stdlib.h
750BICC_EncDec.o: /usr/include/sys/types.h /usr/include/time.h
751BICC_EncDec.o: /usr/include/endian.h /usr/include/bits/endian.h
752BICC_EncDec.o: /usr/include/sys/select.h /usr/include/bits/select.h
753BICC_EncDec.o: /usr/include/bits/sigset.h /usr/include/bits/time.h
754BICC_EncDec.o: /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h
755BICC_EncDec.o: /usr/include/alloca.h
756BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
757BICC_EncDec.o: /usr/include/sys/time.h
758BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
759BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
760BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
761BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
762BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
763BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
764BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
765BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
766BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
767BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
768BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
769BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
770BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
771BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
772BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
773BICC_EncDec.o: /usr/include/regex.h
774BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
775BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
776BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
777BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
778BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
779BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
780BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
781BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
782BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
783BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
784BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
785BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
786BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
787BICC_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
788SCTPasp_PT.o: SCTPasp_PT.hh SCTPasp_PortType.hh SCTPasp_Types.hh
789SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
790SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
791SCTPasp_PT.o: /usr/include/string.h /usr/include/features.h
792SCTPasp_PT.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
793SCTPasp_PT.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
794SCTPasp_PT.o: /usr/include/stdio.h /usr/include/bits/types.h
795SCTPasp_PT.o: /usr/include/bits/typesizes.h /usr/include/libio.h
796SCTPasp_PT.o: /usr/include/_G_config.h /usr/include/wchar.h
797SCTPasp_PT.o: /usr/include/bits/wchar.h /usr/include/gconv.h
798SCTPasp_PT.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h
799SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
800SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
801SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
802SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
803SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
804SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
805SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh /usr/include/stdlib.h
806SCTPasp_PT.o: /usr/include/sys/types.h /usr/include/time.h
807SCTPasp_PT.o: /usr/include/endian.h /usr/include/bits/endian.h
808SCTPasp_PT.o: /usr/include/sys/select.h /usr/include/bits/select.h
809SCTPasp_PT.o: /usr/include/bits/sigset.h /usr/include/bits/time.h
810SCTPasp_PT.o: /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h
811SCTPasp_PT.o: /usr/include/alloca.h
812SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
813SCTPasp_PT.o: /usr/include/sys/time.h
814SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
815SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
816SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
817SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
818SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
819SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
820SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
821SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
822SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
823SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
824SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
825SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
826SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
827SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
828SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
829SCTPasp_PT.o: /usr/include/regex.h
830SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
831SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
832SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
833SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
834SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
835SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
836SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
837SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
838SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
839SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
840SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
841SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
842SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
843SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh
844SCTPasp_PT.o: /usr/include/sys/socket.h /usr/include/sys/uio.h
845SCTPasp_PT.o: /usr/include/bits/uio.h /usr/include/bits/socket.h
846SCTPasp_PT.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
847SCTPasp_PT.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
848SCTPasp_PT.o: /usr/include/bits/posix2_lim.h /usr/include/bits/sockaddr.h
849SCTPasp_PT.o: /usr/include/asm/socket.h /usr/include/asm/sockios.h
850SCTPasp_PT.o: /usr/include/netinet/in.h /usr/include/stdint.h
851SCTPasp_PT.o: /usr/include/bits/in.h /usr/include/bits/byteswap.h
852SCTPasp_PT.o: /usr/local/lksctp-tools-1.0.6/include/netinet/sctp.h
853SCTPasp_PT.o: /usr/include/linux/types.h /usr/include/linux/posix_types.h
854SCTPasp_PT.o: /usr/include/linux/stddef.h /usr/include/linux/compiler.h
855SCTPasp_PT.o: /usr/include/asm/posix_types.h /usr/include/asm/types.h
856SCTPasp_PT.o: /usr/include/arpa/inet.h /usr/include/unistd.h
857SCTPasp_PT.o: /usr/include/bits/posix_opt.h /usr/include/bits/confname.h
858SCTPasp_PT.o: /usr/include/getopt.h /usr/include/netdb.h
859SCTPasp_PT.o: /usr/include/rpc/netdb.h /usr/include/bits/netdb.h
860SCTPasp_PT.o: /usr/local/TTCNv3-1.7.pl0/include/memory.h /usr/include/fcntl.h
861SCTPasp_PT.o: /usr/include/bits/fcntl.h /usr/include/errno.h
862SCTPasp_PT.o: /usr/include/bits/errno.h /usr/include/linux/errno.h
863SCTPasp_PT.o: /usr/include/asm/errno.h /usr/include/asm-generic/errno.h
864SCTPasp_PT.o: /usr/include/asm-generic/errno-base.h
865MTP3asp_EncDec.o: MTP3asp_Types.hh /usr/local/TTCNv3-1.7.pl0/include/TTCN3.hh
866MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/version.h
867MTP3asp_EncDec.o: /usr/include/string.h /usr/include/features.h
868MTP3asp_EncDec.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
869MTP3asp_EncDec.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
870MTP3asp_EncDec.o: /usr/include/stdio.h /usr/include/bits/types.h
871MTP3asp_EncDec.o: /usr/include/bits/typesizes.h /usr/include/libio.h
872MTP3asp_EncDec.o: /usr/include/_G_config.h /usr/include/wchar.h
873MTP3asp_EncDec.o: /usr/include/bits/wchar.h /usr/include/gconv.h
874MTP3asp_EncDec.o: /usr/include/bits/stdio_lim.h
875MTP3asp_EncDec.o: /usr/include/bits/sys_errlist.h
876MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Basetype.hh
877MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Types.h
878MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Encdec.hh
879MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Template.hh
880MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Integer.hh
881MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Optional.hh
882MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/BER.hh
883MTP3asp_EncDec.o: /usr/include/stdlib.h /usr/include/sys/types.h
884MTP3asp_EncDec.o: /usr/include/time.h /usr/include/endian.h
885MTP3asp_EncDec.o: /usr/include/bits/endian.h /usr/include/sys/select.h
886MTP3asp_EncDec.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
887MTP3asp_EncDec.o: /usr/include/bits/time.h /usr/include/sys/sysmacros.h
888MTP3asp_EncDec.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
889MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Logger.hh
890MTP3asp_EncDec.o: /usr/include/sys/time.h
891MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Textbuf.hh
892MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Error.hh
893MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Parameters.h
894MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Float.hh
895MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Boolean.hh
896MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Null.hh
897MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Objid.hh
898MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Verdicttype.hh
899MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Component.hh
900MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Bitstring.hh
901MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/RAW.hh
902MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Hexstring.hh
903MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Octetstring.hh
904MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_Any.hh
905MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Charstring.hh
906MTP3asp_EncDec.o: /usr/include/regex.h
907MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Universal_charstring.hh
908MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Struct_of.hh
909MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Array.hh
910MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_CharacterString.hh
911MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_External.hh
912MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/ASN_EmbeddedPDV.hh
913MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Addfunc.hh
914MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Timer.hh
915MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Port.hh
916MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Module_list.hh
917MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Snapshot.hh
918MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Default.hh
919MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/Runtime.hh
920MTP3asp_EncDec.o: /usr/local/TTCNv3-1.7.pl0/include/TEXT.hh