diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-09-24 18:26:33 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-09-24 18:26:47 -0400 |
commit | bc3b71328decbb944992dbf4f7693a85f771818f (patch) | |
tree | d990ef8a28192b9c312ce412d0ecef9d082c8f36 /apps/Light Meter/make | |
parent | 115c555c4c0eec6f8cef787335fcefddc4472d43 (diff) | |
download | Sensor-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-x | apps/Light Meter/make/.gitignore | 1 | ||||
-rwxr-xr-x | apps/Light Meter/make/Makefile | 11 |
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 |