summaryrefslogtreecommitdiffstats
path: root/apps/Light Meter/make
diff options
context:
space:
mode:
authorJoey Castillo <jose.castillo@gmail.com>2021-09-24 18:26:33 -0400
committerJoey Castillo <jose.castillo@gmail.com>2021-09-24 18:26:47 -0400
commitbc3b71328decbb944992dbf4f7693a85f771818f (patch)
treed990ef8a28192b9c312ce412d0ecef9d082c8f36 /apps/Light Meter/make
parent115c555c4c0eec6f8cef787335fcefddc4472d43 (diff)
downloadSensor-Watch-wip-lightsensor.tar.gz
Sensor-Watch-wip-lightsensor.tar.bz2
Sensor-Watch-wip-lightsensor.zip
WIP light meter appwip-lightsensor
Diffstat (limited to 'apps/Light Meter/make')
-rwxr-xr-xapps/Light Meter/make/.gitignore1
-rwxr-xr-xapps/Light Meter/make/Makefile11
2 files changed, 12 insertions, 0 deletions
diff --git a/apps/Light Meter/make/.gitignore b/apps/Light Meter/make/.gitignore
new file mode 100755
index 00000000..3722ac63
--- /dev/null
+++ b/apps/Light Meter/make/.gitignore
@@ -0,0 +1 @@
+build/
diff --git a/apps/Light Meter/make/Makefile b/apps/Light Meter/make/Makefile
new file mode 100755
index 00000000..a881deea
--- /dev/null
+++ b/apps/Light Meter/make/Makefile
@@ -0,0 +1,11 @@
+TOP = ../../..
+include $(TOP)/make.mk
+
+INCLUDES += \
+ -I../
+
+SRCS += \
+ ../app.c \
+ ../tsl2591.c
+
+include $(TOP)/rules.mk