blob: b0df7bd342f7980b3e236211a7119b1100e16804 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
################################################################################
# Automatically-generated file. Do not edit!
################################################################################
S_UPPER_SRCS += \
${addprefix $(ROOT)/, \
}
CPP_SRCS += \
${addprefix $(ROOT)/, \
Coffeemachine.cpp \
GeneralDevice.cpp \
Heating.cpp \
Radio.cpp \
main.cpp \
}
CC_SRCS += \
${addprefix $(ROOT)/, \
}
C_SRCS += \
${addprefix $(ROOT)/, \
}
C_UPPER_SRCS += \
${addprefix $(ROOT)/, \
}
CXX_SRCS += \
${addprefix $(ROOT)/, \
}
S_SRCS += \
${addprefix $(ROOT)/, \
}
# Each subdirectory must supply rules for building sources it contributes
%.o: $(ROOT)/%.cpp
@echo 'Building file: $<'
@echo g++ -O0 -g3 -Wall -c -fmessage-length=0 -o$@ $<
@g++ -O0 -g3 -Wall -c -fmessage-length=0 -o$@ $< && \
echo -n $(@:%.o=%.d) $(dir $@) > $(@:%.o=%.d) && \
g++ -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 $< >> $(@:%.o=%.d)
@echo 'Finished building: $<'
@echo ' '
|