From dbb4fea690017cb9735ca4a6802f8f2fa3a8e951 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 2 Feb 2022 07:36:56 +0100 Subject: fsfat moved to ext dir --- ext/fsfat/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ext/fsfat/Makefile (limited to 'ext/fsfat/Makefile') 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 -- cgit v1.2.3