mirror of
https://github.com/Martin-P/OpenV2G.git
synced 2024-11-18 12:53:58 +00:00
git-svn-id: https://svn.code.sf.net/p/openv2g/code/trunk@77 d9f2db14-54d0-4bde-b00c-16405c910529
This commit is contained in:
parent
75c2627f62
commit
c7365f25a1
9 changed files with 309 additions and 0 deletions
49
Release/makefile
Normal file
49
Release/makefile
Normal file
|
@ -0,0 +1,49 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
-include ../makefile.init
|
||||
|
||||
RM := rm -rf
|
||||
|
||||
# All of the sources participating in the build are defined here
|
||||
-include sources.mk
|
||||
-include subdir.mk
|
||||
-include src/transport/subdir.mk
|
||||
-include src/test/subdir.mk
|
||||
-include src/service/subdir.mk
|
||||
-include src/codec/appHandCodec/subdir.mk
|
||||
-include src/codec/subdir.mk
|
||||
-include src/appHandshake/subdir.mk
|
||||
-include objects.mk
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifneq ($(strip $(C_DEPS)),)
|
||||
-include $(C_DEPS)
|
||||
endif
|
||||
endif
|
||||
|
||||
-include ../makefile.defs
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
|
||||
# All Target
|
||||
all: OpenV2G.exe
|
||||
|
||||
# Tool invocations
|
||||
OpenV2G.exe: $(OBJS) $(USER_OBJS)
|
||||
@echo 'Building target: $@'
|
||||
@echo 'Invoking: MinGW C Linker'
|
||||
gcc -o"OpenV2G.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||
@echo 'Finished building target: $@'
|
||||
@echo ' '
|
||||
|
||||
# Other Targets
|
||||
clean:
|
||||
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) OpenV2G.exe
|
||||
-@echo ' '
|
||||
|
||||
.PHONY: all clean dependents
|
||||
.SECONDARY:
|
||||
|
||||
-include ../makefile.targets
|
7
Release/objects.mk
Normal file
7
Release/objects.mk
Normal file
|
@ -0,0 +1,7 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
USER_OBJS :=
|
||||
|
||||
LIBS :=
|
22
Release/sources.mk
Normal file
22
Release/sources.mk
Normal file
|
@ -0,0 +1,22 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
O_SRCS :=
|
||||
C_SRCS :=
|
||||
S_UPPER_SRCS :=
|
||||
OBJ_SRCS :=
|
||||
ASM_SRCS :=
|
||||
OBJS :=
|
||||
C_DEPS :=
|
||||
EXECUTABLES :=
|
||||
|
||||
# Every subdirectory with source files must be described here
|
||||
SUBDIRS := \
|
||||
src/transport \
|
||||
src/test \
|
||||
src/service \
|
||||
src/codec/appHandCodec \
|
||||
src/codec \
|
||||
src/appHandshake \
|
||||
|
30
Release/src/appHandshake/subdir.mk
Normal file
30
Release/src/appHandshake/subdir.mk
Normal file
|
@ -0,0 +1,30 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/appHandshake/appHand_DataDeserialization.c \
|
||||
../src/appHandshake/appHand_DataSerialization.c \
|
||||
../src/appHandshake/appHand_dataTypes.c
|
||||
|
||||
OBJS += \
|
||||
./src/appHandshake/appHand_DataDeserialization.o \
|
||||
./src/appHandshake/appHand_DataSerialization.o \
|
||||
./src/appHandshake/appHand_dataTypes.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/appHandshake/appHand_DataDeserialization.d \
|
||||
./src/appHandshake/appHand_DataSerialization.d \
|
||||
./src/appHandshake/appHand_dataTypes.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/appHandshake/%.o: ../src/appHandshake/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec\appHandCodec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\appHandshake" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\transport" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\service" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\test" -O3 -Os -pedantic -pedantic-errors -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
30
Release/src/codec/appHandCodec/subdir.mk
Normal file
30
Release/src/codec/appHandCodec/subdir.mk
Normal file
|
@ -0,0 +1,30 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/codec/appHandCodec/appHand_EXIDecoder.c \
|
||||
../src/codec/appHandCodec/appHand_EXIEncoder.c \
|
||||
../src/codec/appHandCodec/appHand_NameTableEntries.c
|
||||
|
||||
OBJS += \
|
||||
./src/codec/appHandCodec/appHand_EXIDecoder.o \
|
||||
./src/codec/appHandCodec/appHand_EXIEncoder.o \
|
||||
./src/codec/appHandCodec/appHand_NameTableEntries.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/codec/appHandCodec/appHand_EXIDecoder.d \
|
||||
./src/codec/appHandCodec/appHand_EXIEncoder.d \
|
||||
./src/codec/appHandCodec/appHand_NameTableEntries.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/codec/appHandCodec/%.o: ../src/codec/appHandCodec/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec\appHandCodec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\appHandshake" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\transport" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\service" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\test" -O3 -Os -pedantic -pedantic-errors -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
75
Release/src/codec/subdir.mk
Normal file
75
Release/src/codec/subdir.mk
Normal file
|
@ -0,0 +1,75 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/codec/AbstractDecoderChannel.c \
|
||||
../src/codec/AbstractEncoderChannel.c \
|
||||
../src/codec/BitDecoderChannel.c \
|
||||
../src/codec/BitEncoderChannel.c \
|
||||
../src/codec/BitInputStream.c \
|
||||
../src/codec/BitOutputStream.c \
|
||||
../src/codec/ByteDecoderChannel.c \
|
||||
../src/codec/ByteEncoderChannel.c \
|
||||
../src/codec/ByteStream.c \
|
||||
../src/codec/EXICoder.c \
|
||||
../src/codec/EXIDecoder.c \
|
||||
../src/codec/EXIEncoder.c \
|
||||
../src/codec/EXIHeaderDecoder.c \
|
||||
../src/codec/EXIHeaderEncoder.c \
|
||||
../src/codec/MethodsBag.c \
|
||||
../src/codec/NameTableEntries.c \
|
||||
../src/codec/StringTable.c \
|
||||
../src/codec/UCSString.c
|
||||
|
||||
OBJS += \
|
||||
./src/codec/AbstractDecoderChannel.o \
|
||||
./src/codec/AbstractEncoderChannel.o \
|
||||
./src/codec/BitDecoderChannel.o \
|
||||
./src/codec/BitEncoderChannel.o \
|
||||
./src/codec/BitInputStream.o \
|
||||
./src/codec/BitOutputStream.o \
|
||||
./src/codec/ByteDecoderChannel.o \
|
||||
./src/codec/ByteEncoderChannel.o \
|
||||
./src/codec/ByteStream.o \
|
||||
./src/codec/EXICoder.o \
|
||||
./src/codec/EXIDecoder.o \
|
||||
./src/codec/EXIEncoder.o \
|
||||
./src/codec/EXIHeaderDecoder.o \
|
||||
./src/codec/EXIHeaderEncoder.o \
|
||||
./src/codec/MethodsBag.o \
|
||||
./src/codec/NameTableEntries.o \
|
||||
./src/codec/StringTable.o \
|
||||
./src/codec/UCSString.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/codec/AbstractDecoderChannel.d \
|
||||
./src/codec/AbstractEncoderChannel.d \
|
||||
./src/codec/BitDecoderChannel.d \
|
||||
./src/codec/BitEncoderChannel.d \
|
||||
./src/codec/BitInputStream.d \
|
||||
./src/codec/BitOutputStream.d \
|
||||
./src/codec/ByteDecoderChannel.d \
|
||||
./src/codec/ByteEncoderChannel.d \
|
||||
./src/codec/ByteStream.d \
|
||||
./src/codec/EXICoder.d \
|
||||
./src/codec/EXIDecoder.d \
|
||||
./src/codec/EXIEncoder.d \
|
||||
./src/codec/EXIHeaderDecoder.d \
|
||||
./src/codec/EXIHeaderEncoder.d \
|
||||
./src/codec/MethodsBag.d \
|
||||
./src/codec/NameTableEntries.d \
|
||||
./src/codec/StringTable.d \
|
||||
./src/codec/UCSString.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/codec/%.o: ../src/codec/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec\appHandCodec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\appHandshake" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\transport" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\service" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\test" -O3 -Os -pedantic -pedantic-errors -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
33
Release/src/service/subdir.mk
Normal file
33
Release/src/service/subdir.mk
Normal file
|
@ -0,0 +1,33 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/service/v2g_serviceClientStubs.c \
|
||||
../src/service/v2g_serviceDataSerialization.c \
|
||||
../src/service/v2g_serviceDataTypes.c \
|
||||
../src/service/v2g_serviceDispatcher.c
|
||||
|
||||
OBJS += \
|
||||
./src/service/v2g_serviceClientStubs.o \
|
||||
./src/service/v2g_serviceDataSerialization.o \
|
||||
./src/service/v2g_serviceDataTypes.o \
|
||||
./src/service/v2g_serviceDispatcher.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/service/v2g_serviceClientStubs.d \
|
||||
./src/service/v2g_serviceDataSerialization.d \
|
||||
./src/service/v2g_serviceDataTypes.d \
|
||||
./src/service/v2g_serviceDispatcher.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/service/%.o: ../src/service/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec\appHandCodec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\appHandshake" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\transport" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\service" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\test" -O3 -Os -pedantic -pedantic-errors -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
39
Release/src/test/subdir.mk
Normal file
39
Release/src/test/subdir.mk
Normal file
|
@ -0,0 +1,39 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/test/evse_server.c \
|
||||
../src/test/evse_serviceMethods.c \
|
||||
../src/test/main.c \
|
||||
../src/test/main_codec.c \
|
||||
../src/test/pev_service.c \
|
||||
../src/test/serviceClientDataTransmitter.c
|
||||
|
||||
OBJS += \
|
||||
./src/test/evse_server.o \
|
||||
./src/test/evse_serviceMethods.o \
|
||||
./src/test/main.o \
|
||||
./src/test/main_codec.o \
|
||||
./src/test/pev_service.o \
|
||||
./src/test/serviceClientDataTransmitter.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/test/evse_server.d \
|
||||
./src/test/evse_serviceMethods.d \
|
||||
./src/test/main.d \
|
||||
./src/test/main_codec.d \
|
||||
./src/test/pev_service.d \
|
||||
./src/test/serviceClientDataTransmitter.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/test/%.o: ../src/test/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec\appHandCodec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\appHandshake" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\transport" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\service" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\test" -O3 -Os -pedantic -pedantic-errors -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
24
Release/src/transport/subdir.mk
Normal file
24
Release/src/transport/subdir.mk
Normal file
|
@ -0,0 +1,24 @@
|
|||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../src/transport/v2gtp.c
|
||||
|
||||
OBJS += \
|
||||
./src/transport/v2gtp.o
|
||||
|
||||
C_DEPS += \
|
||||
./src/transport/v2gtp.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
src/transport/%.o: ../src/transport/%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: GCC C Compiler'
|
||||
gcc -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\codec\appHandCodec" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\appHandshake" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\transport" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\service" -I"D:\Data\MCHN4240\workspace_c\OpenV2G\trunk\src\test" -O3 -Os -pedantic -pedantic-errors -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
Loading…
Reference in a new issue