From c7365f25a183a6f20ec3fe804c485e636e42706d Mon Sep 17 00:00:00 2001 From: sebastiankb Date: Wed, 25 Jul 2012 11:44:52 +0000 Subject: [PATCH] git-svn-id: https://svn.code.sf.net/p/openv2g/code/trunk@77 d9f2db14-54d0-4bde-b00c-16405c910529 --- Release/makefile | 49 ++++++++++++++++ Release/objects.mk | 7 +++ Release/sources.mk | 22 +++++++ Release/src/appHandshake/subdir.mk | 30 ++++++++++ Release/src/codec/appHandCodec/subdir.mk | 30 ++++++++++ Release/src/codec/subdir.mk | 75 ++++++++++++++++++++++++ Release/src/service/subdir.mk | 33 +++++++++++ Release/src/test/subdir.mk | 39 ++++++++++++ Release/src/transport/subdir.mk | 24 ++++++++ 9 files changed, 309 insertions(+) create mode 100644 Release/makefile create mode 100644 Release/objects.mk create mode 100644 Release/sources.mk create mode 100644 Release/src/appHandshake/subdir.mk create mode 100644 Release/src/codec/appHandCodec/subdir.mk create mode 100644 Release/src/codec/subdir.mk create mode 100644 Release/src/service/subdir.mk create mode 100644 Release/src/test/subdir.mk create mode 100644 Release/src/transport/subdir.mk diff --git a/Release/makefile b/Release/makefile new file mode 100644 index 0000000..7e620bf --- /dev/null +++ b/Release/makefile @@ -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 diff --git a/Release/objects.mk b/Release/objects.mk new file mode 100644 index 0000000..dc028f6 --- /dev/null +++ b/Release/objects.mk @@ -0,0 +1,7 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +USER_OBJS := + +LIBS := diff --git a/Release/sources.mk b/Release/sources.mk new file mode 100644 index 0000000..86392d5 --- /dev/null +++ b/Release/sources.mk @@ -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 \ + diff --git a/Release/src/appHandshake/subdir.mk b/Release/src/appHandshake/subdir.mk new file mode 100644 index 0000000..d138fed --- /dev/null +++ b/Release/src/appHandshake/subdir.mk @@ -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 ' ' + + diff --git a/Release/src/codec/appHandCodec/subdir.mk b/Release/src/codec/appHandCodec/subdir.mk new file mode 100644 index 0000000..842b360 --- /dev/null +++ b/Release/src/codec/appHandCodec/subdir.mk @@ -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 ' ' + + diff --git a/Release/src/codec/subdir.mk b/Release/src/codec/subdir.mk new file mode 100644 index 0000000..700928f --- /dev/null +++ b/Release/src/codec/subdir.mk @@ -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 ' ' + + diff --git a/Release/src/service/subdir.mk b/Release/src/service/subdir.mk new file mode 100644 index 0000000..221434c --- /dev/null +++ b/Release/src/service/subdir.mk @@ -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 ' ' + + diff --git a/Release/src/test/subdir.mk b/Release/src/test/subdir.mk new file mode 100644 index 0000000..9907b06 --- /dev/null +++ b/Release/src/test/subdir.mk @@ -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 ' ' + + diff --git a/Release/src/transport/subdir.mk b/Release/src/transport/subdir.mk new file mode 100644 index 0000000..012d2dc --- /dev/null +++ b/Release/src/transport/subdir.mk @@ -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 ' ' + +