Skip to content

Commit ba5ebe5

Browse files
author
Stuart Cording
committed
Added changes to the ihDiff code base.
Minor changes to ihDiff project related code for release of first MSVC version executable.
1 parent 6229c57 commit ba5ebe5

File tree

9 files changed

+241
-2
lines changed

9 files changed

+241
-2
lines changed

utilities/ihDiff/.cproject

Lines changed: 114 additions & 2 deletions
Large diffs are not rendered by default.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
################################################################################
2+
# Automatically-generated file. Do not edit!
3+
################################################################################
4+
5+
-include ../makefile.init
6+
7+
RM := rm -rf
8+
9+
# All of the sources participating in the build are defined here
10+
-include sources.mk
11+
-include subdir.mk
12+
-include objects.mk
13+
14+
ifneq ($(MAKECMDGOALS),clean)
15+
ifneq ($(strip $(C++_DEPS)),)
16+
-include $(C++_DEPS)
17+
endif
18+
ifneq ($(strip $(C_DEPS)),)
19+
-include $(C_DEPS)
20+
endif
21+
ifneq ($(strip $(CC_DEPS)),)
22+
-include $(CC_DEPS)
23+
endif
24+
ifneq ($(strip $(CPP_DEPS)),)
25+
-include $(CPP_DEPS)
26+
endif
27+
ifneq ($(strip $(CXX_DEPS)),)
28+
-include $(CXX_DEPS)
29+
endif
30+
ifneq ($(strip $(C_UPPER_DEPS)),)
31+
-include $(C_UPPER_DEPS)
32+
endif
33+
endif
34+
35+
-include ../makefile.defs
36+
37+
# Add inputs and outputs from these tool invocations to the build variables
38+
39+
# All Target
40+
all: ihDiff
41+
42+
# Tool invocations
43+
ihDiff: $(OBJS) $(USER_OBJS)
44+
@echo 'Building target: $@'
45+
@echo 'Invoking: GCC C++ Linker'
46+
g++ -o "ihDiff" $(OBJS) $(USER_OBJS) $(LIBS)
47+
@echo 'Finished building target: $@'
48+
@echo ' '
49+
50+
# Other Targets
51+
clean:
52+
-$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) ihDiff
53+
-@echo ' '
54+
55+
.PHONY: all clean dependents
56+
.SECONDARY:
57+
58+
-include ../makefile.targets
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
################################################################################
2+
# Automatically-generated file. Do not edit!
3+
################################################################################
4+
5+
USER_OBJS :=
6+
7+
LIBS :=
8+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
################################################################################
2+
# Automatically-generated file. Do not edit!
3+
################################################################################
4+
5+
O_SRCS :=
6+
CPP_SRCS :=
7+
C_UPPER_SRCS :=
8+
C_SRCS :=
9+
S_UPPER_SRCS :=
10+
OBJ_SRCS :=
11+
ASM_SRCS :=
12+
CXX_SRCS :=
13+
C++_SRCS :=
14+
CC_SRCS :=
15+
OBJS :=
16+
C++_DEPS :=
17+
C_DEPS :=
18+
CC_DEPS :=
19+
CPP_DEPS :=
20+
EXECUTABLES :=
21+
CXX_DEPS :=
22+
C_UPPER_DEPS :=
23+
24+
# Every subdirectory with source files must be described here
25+
SUBDIRS := \
26+
. \
27+
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
################################################################################
2+
# Automatically-generated file. Do not edit!
3+
################################################################################
4+
5+
# Add inputs and outputs from these tool invocations to the build variables
6+
CPP_SRCS += \
7+
../ihDiff.cpp \
8+
C:/Documents\ and\ Settings/stuart.cording/My\ Documents/sw-dev/intelhex/intelhex_class/intelhexclass.cpp
9+
10+
OBJS += \
11+
./ihDiff.o \
12+
./intelhexclass.o
13+
14+
CPP_DEPS += \
15+
./ihDiff.d \
16+
./intelhexclass.d
17+
18+
19+
# Each subdirectory must supply rules for building sources it contributes
20+
%.o: ../%.cpp
21+
@echo 'Building file: $<'
22+
@echo 'Invoking: GCC C++ Compiler'
23+
g++ -I"C:\Documents and Settings\stuart.cording\My Documents\sw-dev\intelhex\intelhex_class" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
24+
@echo 'Finished building: $<'
25+
@echo ' '
26+
27+
intelhexclass.o: C:/Documents\ and\ Settings/stuart.cording/My\ Documents/sw-dev/intelhex/intelhex_class/intelhexclass.cpp
28+
@echo 'Building file: $<'
29+
@echo 'Invoking: GCC C++ Compiler'
30+
g++ -I"C:\Documents and Settings\stuart.cording\My Documents\sw-dev\intelhex\intelhex_class" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"intelhexclass.d" -MT"intelhexclass.d" -o "$@" "$<"
31+
@echo 'Finished building: $<'
32+
@echo ' '
33+
34+
8 KB
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)