-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.mk
More file actions
49 lines (39 loc) · 992 Bytes
/
objects.mk
File metadata and controls
49 lines (39 loc) · 992 Bytes
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
OUT_PATH:=Release
OUT_FILE:=$(OUT_PATH)/car
C_INCS += \
-I"inc" \
-I"system/inc" \
-I"system/inc/cmsis" \
-I"system/inc/stm32f1-stdperiph"
C_SRCS += \
src/wrio.c \
src/led.c \
src/car.c \
src/main.c \
src/psx.c \
src/pwm.c \
src/stimer.c \
src/usart_monitor.c
C_SRCS += \
system/src/cmsis/system_stm32f10x.c \
system/src/cmsis/vectors_stm32f10x.c
C_SRCS += \
system/src/cortexm/_initialize_hardware.c \
system/src/cortexm/_reset_hardware.c \
system/src/cortexm/exception_handlers.c
C_SRCS += \
system/src/diag/Trace.c \
system/src/diag/trace_impl.c \
system/src/diag/_write.c
C_SRCS += \
system/src/newlib/_exit.c \
system/src/newlib/_sbrk.c \
system/src/newlib/_startup.c \
system/src/newlib/_syscalls.c \
system/src/newlib/assert.c
C_SRCS += \
system/src/stm32f1-stdperiph/misc.c \
system/src/stm32f1-stdperiph/stm32f10x_gpio.c \
system/src/stm32f1-stdperiph/stm32f10x_rcc.c \
system/src/stm32f1-stdperiph/stm32f10x_tim.c \
system/src/stm32f1-stdperiph/stm32f10x_usart.c