diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-02-02 07:36:56 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-02-02 07:36:56 +0100 |
commit | dbb4fea690017cb9735ca4a6802f8f2fa3a8e951 (patch) | |
tree | 7e759696beb1280d2e15069b7e70e4023681cf4a /ext/fsfat/Makefile | |
parent | a38acfdab4a4cc4e624945dd63e8731150418c10 (diff) |
fsfat moved to ext dir
Diffstat (limited to 'ext/fsfat/Makefile')
-rw-r--r-- | ext/fsfat/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/fsfat/Makefile b/ext/fsfat/Makefile new file mode 100644 index 0000000..149bb72 --- /dev/null +++ b/ext/fsfat/Makefile @@ -0,0 +1,15 @@ +include common.mk +CFLAGS += -I$(fe310_dir) +obj = diskio.o ff.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +%.o: %.S + $(CC) $(CFLAGS) -c $< + +all: $(obj) + +clean: + rm -f *.o |