summaryrefslogtreecommitdiffstats
path: root/apps/starter-project/make
diff options
context:
space:
mode:
authorWillian Paixao <willian@ufpa.br>2021-12-11 20:33:58 +0100
committerWillian Paixao <willian@ufpa.br>2021-12-11 20:33:58 +0100
commitd46cc407dfec340606ab4d5841a79b3571ee122a (patch)
tree6b62dcbdf6e5a6866d784522e0a677fb3f5e156e /apps/starter-project/make
parent095466c27046cbe88925ceedf5cb2c1c550c8008 (diff)
downloadSensor-Watch-d46cc407dfec340606ab4d5841a79b3571ee122a.tar.gz
Sensor-Watch-d46cc407dfec340606ab4d5841a79b3571ee122a.tar.bz2
Sensor-Watch-d46cc407dfec340606ab4d5841a79b3571ee122a.zip
update makefile and pipeline workflow
Diffstat (limited to 'apps/starter-project/make')
-rwxr-xr-xapps/starter-project/make/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/starter-project/make/Makefile b/apps/starter-project/make/Makefile
deleted file mode 100755
index 09a59a05..00000000
--- a/apps/starter-project/make/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# Leave these lines at the top of the file.
-# TOP should get us to the root of the project...
-TOP = ../../..
-# ...and make.mk has all the watch library sources and includes.
-include $(TOP)/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; rules.mk has all the targets for making your project.
-include $(TOP)/rules.mk