diff options
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 |