diff options
Diffstat (limited to 'fw/fe310/test/app/Makefile')
-rw-r--r-- | fw/fe310/test/app/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fw/fe310/test/app/Makefile b/fw/fe310/test/app/Makefile new file mode 100644 index 0000000..fe0ba21 --- /dev/null +++ b/fw/fe310/test/app/Makefile @@ -0,0 +1,15 @@ +include ../../common.mk + +obj = app_root.o app_status.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +%.o: %.S + $(CC) $(CFLAGS) -c $< + +all: $(obj) + +clean: + rm -f *.o |