diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-05-06 17:06:27 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-05-06 17:12:14 -0400 |
commit | d4ebe64af05e2fa163bcea0dd699ae9c8934cc6f (patch) | |
tree | 0f9db98200a7fc0028ef2549ddfba15918b7465d /apps/eeprom-emulation-upgrade/Makefile | |
parent | 21026c8eb750b35c07bb3ae9fb043fd01e502a06 (diff) | |
download | Sensor-Watch-d4ebe64af05e2fa163bcea0dd699ae9c8934cc6f.tar.gz Sensor-Watch-d4ebe64af05e2fa163bcea0dd699ae9c8934cc6f.tar.bz2 Sensor-Watch-d4ebe64af05e2fa163bcea0dd699ae9c8934cc6f.zip |
add support for a small filesystem on the watch
Diffstat (limited to 'apps/eeprom-emulation-upgrade/Makefile')
-rwxr-xr-x | apps/eeprom-emulation-upgrade/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/eeprom-emulation-upgrade/Makefile b/apps/eeprom-emulation-upgrade/Makefile new file mode 100755 index 00000000..5534c178 --- /dev/null +++ b/apps/eeprom-emulation-upgrade/Makefile @@ -0,0 +1,10 @@ +TOP = ../.. +include $(TOP)/make.mk + +INCLUDES += \ + -I./ + +SRCS += \ + ./app.c + +include $(TOP)/rules.mk |