summaryrefslogtreecommitdiffstats
path: root/apps/Sensor Watch Accelerometer Test/make
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-11-27 13:32:15 -0500
committerJoey Castillo <jose.castillo@gmail.com>2021-11-27 13:32:33 -0500
commit470544823bc2f8b7ef4cf535adbf22fa2c81915f (patch)
tree19976eec6639f92f571d55adcfcd345f6fda2b27 /apps/Sensor Watch Accelerometer Test/make
parent002d368a25914527015f63967421fd0e7c5bda17 (diff)
downloadSensor-Watch-470544823bc2f8b7ef4cf535adbf22fa2c81915f.tar.gz
Sensor-Watch-470544823bc2f8b7ef4cf535adbf22fa2c81915f.tar.bz2
Sensor-Watch-470544823bc2f8b7ef4cf535adbf22fa2c81915f.zip
add LIS2DH accelerometer driver, test app
Diffstat (limited to 'apps/Sensor Watch Accelerometer Test/make')
-rwxr-xr-xapps/Sensor Watch Accelerometer Test/make/.gitignore1
-rwxr-xr-xapps/Sensor Watch Accelerometer Test/make/Makefile10
2 files changed, 11 insertions, 0 deletions
diff --git a/apps/Sensor Watch Accelerometer Test/make/.gitignore b/apps/Sensor Watch Accelerometer Test/make/.gitignore
new file mode 100755
index 00000000..567609b1
--- /dev/null
+++ b/apps/Sensor Watch Accelerometer Test/make/.gitignore
@@ -0,0 +1 @@
+build/
diff --git a/apps/Sensor Watch Accelerometer Test/make/Makefile b/apps/Sensor Watch Accelerometer Test/make/Makefile
new file mode 100755
index 00000000..c66ad20c
--- /dev/null
+++ b/apps/Sensor Watch Accelerometer Test/make/Makefile
@@ -0,0 +1,10 @@
+TOP = ../../..
+include $(TOP)/make.mk
+
+INCLUDES += \
+ -I../
+
+SRCS += \
+ ../app.c
+
+include $(TOP)/rules.mk