summaryrefslogtreecommitdiffstats
path: root/Sensor Watch Starter Project/make
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-09-16 15:40:01 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-09-16 15:40:01 -0400
commit07420e6ead840973d7136222b8e872261a7b18b8 (patch)
tree72c8af88f945c0d4f8b2a3b467994ccc8cc7bfd8 /Sensor Watch Starter Project/make
parentb3de08343b7db4ed380cdfa3ca0df824728999b1 (diff)
downloadSensor-Watch-07420e6ead840973d7136222b8e872261a7b18b8.tar.gz
Sensor-Watch-07420e6ead840973d7136222b8e872261a7b18b8.tar.bz2
Sensor-Watch-07420e6ead840973d7136222b8e872261a7b18b8.zip
move apps to subdirectory, add relative path support to Makefile
Diffstat (limited to 'Sensor Watch Starter Project/make')
-rwxr-xr-xSensor Watch Starter Project/make/.gitignore1
-rwxr-xr-xSensor Watch Starter Project/make/Makefile23
2 files changed, 0 insertions, 24 deletions
diff --git a/Sensor Watch Starter Project/make/.gitignore b/Sensor Watch Starter Project/make/.gitignore
deleted file mode 100755
index 3722ac63..00000000
--- a/Sensor Watch Starter Project/make/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-build/
diff --git a/Sensor Watch Starter Project/make/Makefile b/Sensor Watch Starter Project/make/Makefile
deleted file mode 100755
index bf6d4232..00000000
--- a/Sensor Watch Starter Project/make/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# Leave this line at the top of the file; it has all the watch library sources and includes.
-include ../../make.mk
-
-# If you add any other subdirectories with header files you wish to include, add them after ../
-# Note that you will need to add a backslash at the end of any line you wish to continue, i.e.
-# INCLUDES += \
-# -I../ \
-# -I../drivers/ \
-# -I../utils/
-INCLUDES += \
- -I../ \
-
-# If you add any other source files you wish to compile, add them after ../app.c
-# Note that you will need to add a backslash at the end of any line you wish to continue, i.e.
-# SRCS += \
-# ../app.c \
-# ../drivers/bmp280.c \
-# ../utils/temperature.c
-SRCS += \
- ../app.c \
-
-# Leave this line at the bottom of the file; it has all the targets for making your project.
-include ../../rules.mk