Eclipse makefile generation issue
Not sure why this suddenly started happening today, but even less sure how to fix it! I suspect it is to do with my project exceeding 100 TTCN files, but cant be sure as sometimes it generates the makefile correctly, and sometimes it doesn't.
The makefile is generated with the .ttcn files in the OTHER_FILES list instead of TTCN3_MODULES. At first it only put new files I added in the OTHER_FILES list, but now after a clean, everything is going into that list!
I suspect it is related to this issue #14
`
TTCN-3 modules of this project:
TTCN3_MODULES =
ASN.1 modules of this project:
ASN1_MODULES =
C++ source & header files generated from the TTCN-3 & ASN.1 modules of
this project:
GENERATED_SOURCES = GENERATED_HEADERS =
C/C++ Source & header files of Test Ports, external functions and
other modules:
USER_SOURCES = ../src/ExternalFunctions.cc ../src/HAL_61851_Internal_Port.cc ../src/HAL_61851_Port.cc ../src/SLAC_Port.cc ../src/V2G_UDP_SDP_Port.cc USER_HEADERS = ../src/HAL_61851_Internal_Port.hh ../src/HAL_61851_Port.hh ../src/SLAC_Port.hh ../src/V2G_UDP_SDP_Port.hh
Object files of this project that are needed for the executable test suite:
OBJECTS = $(GENERATED_OBJECTS) $(USER_OBJECTS)
GENERATED_OBJECTS =
USER_OBJECTS = ExternalFunctions.o HAL_61851_Internal_Port.o HAL_61851_Port.o SLAC_Port.o V2G_UDP_SDP_Port.o
Other files of the project (Makefile, configuration files, etc.)
that will be added to the archived source files:
OTHER_FILES = ../src/AC_EVCC_SLAC_Control.ttcn ../src/AC_EVCC_SLAC_Error_Control.ttcn ... (All the other files) `