diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-08-03 11:56:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 11:56:52 -0600 |
commit | e790a025787e0e1aa59b98b95e194cf4318d1578 (patch) | |
tree | 149bd53bbd46ebddd31957cc827a7c40ccf6f1a0 /apps/eeprom-emulation-upgrade/Makefile | |
parent | 6d87f5a6268a9a516d8c577dfd71b39a5bfc384a (diff) | |
parent | bcd3b666848214a735f37a5a4f08b157ba7bb3a1 (diff) | |
download | Sensor-Watch-e790a025787e0e1aa59b98b95e194cf4318d1578.tar.gz Sensor-Watch-e790a025787e0e1aa59b98b95e194cf4318d1578.tar.bz2 Sensor-Watch-e790a025787e0e1aa59b98b95e194cf4318d1578.zip |
Merge pull request #80 from joeycastillo/lfs
Movement: add a lil file system with lfs
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 |