diff options
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 |