diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-05-20 19:06:47 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-05-20 19:06:47 +0200 |
commit | 3cac09c89fe0081f06188f1e9440de5d863951be (patch) | |
tree | 1987fe6544c390eaa501f04583da3feda4370bfd /fw/fe310/fsfat/Makefile | |
parent | 6a17d31a8ac0e0be5dae9d865fa7097a6a8f40ad (diff) |
fat filesystem with disk encryption for sd card driver
Diffstat (limited to 'fw/fe310/fsfat/Makefile')
-rw-r--r-- | fw/fe310/fsfat/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fw/fe310/fsfat/Makefile b/fw/fe310/fsfat/Makefile new file mode 100644 index 0000000..a20a5be --- /dev/null +++ b/fw/fe310/fsfat/Makefile @@ -0,0 +1,17 @@ +include ../common.mk + +CFLAGS += -I. -I.. + +obj = diskio.o ff.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +%.o: %.S + $(CC) $(CFLAGS) -c $< + +all: $(obj) + +clean: + rm -f *.o |