forked from Adesh/SparkCore-LiquidCrystal-master
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.mk
46 lines (40 loc) · 1.79 KB
/
build.mk
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
# This file is a makefile included from the top level makefile which
# defines the sources built for the target.
# Define the prefix to this directory.
# Note: The name must be unique within this build and should be
# based on the root of the project
TARGET_SRC_PATH = src
# Add include to all objects built for this target
INCLUDE_DIRS += inc
# C source files included in this build.
CSRC +=
# C++ source files included in this build.
CPPSRC += $(TARGET_SRC_PATH)/application.cpp
CPPSRC += $(TARGET_SRC_PATH)/LiquidCrystal.cpp
CPPSRC += $(TARGET_SRC_PATH)/main.cpp
CPPSRC += $(TARGET_SRC_PATH)/newlib_stubs.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_utilities.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_i2c.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_interrupts.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_ipaddress.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_network.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_print.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_servo.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_spi.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_stream.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_string.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_tcpclient.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_tcpserver.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_udp.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_usartserial.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wiring_usbserial.cpp
CPPSRC += $(TARGET_SRC_PATH)/spark_wlan.cpp
CPPSRC += $(TARGET_SRC_PATH)/stm32_it.cpp
CPPSRC += $(TARGET_SRC_PATH)/usb_desc.cpp
CPPSRC += $(TARGET_SRC_PATH)/usb_endp.cpp
CPPSRC += $(TARGET_SRC_PATH)/usb_istr.cpp
CPPSRC += $(TARGET_SRC_PATH)/usb_prop.cpp
CPPSRC += $(TARGET_SRC_PATH)/wifi_credentials_reader.cpp
# ASM source files included in this build.
ASRC +=