-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.project~
36 lines (27 loc) · 921 Bytes
/
Makefile.project~
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
### This file may be edited to adapt to your project ###
# Base name for the main program
PROGNAME = demo
# List of assembly source (.S) files
ASMS =
# List of assembly includes (optional)
ASMDEPS =
# List of C source files (.c)
SRCS = src/boot/startup.c src/boot/interrupts.c
SRCS += src/sys/clock.c src/sys/power.c src/sys/serial_io.c
SRCS += src/sys/init.c src/sys/syscalls.c
SRCS += src/systick.c src/sensors.c src/demo.c
# List of C header files (optional)
CDEPS = src/sys/clock.h src/sys/power.h src/sys/serial_io.h
CDEPS += src/sys/init.h src/sys/devices.h
CDEPS += src/sys/cm4.h src/sys/cmsis_gcc.h
CDEPS += src/systick.h src/sensors.h
# List of C++ source files (.cpp)
CPPSRCS =
# List of C++ deps (optional)
CPPDEPS =
# C source file where CRC info will be stored
CRCSRC =
# CRCSRC = src/boot/crc_info.c
# Name of linker program (change gcc to g++ if linking C++ files)
LINKER = gcc
#LINKER = g++