diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-09-04 18:37:42 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-09-04 18:37:42 +0200 |
commit | fc98d3809e0db36d634f290417b9152f87f83e3e (patch) | |
tree | d7c0cbb883571dccfcd4028d8b7b2a2144fc2d2b /fw/fe310/phone/app/Makefile | |
parent | 07e6abe5d5a1813298805bea2bf9d62ad895aaaa (diff) |
new phone firmware
Diffstat (limited to 'fw/fe310/phone/app/Makefile')
-rw-r--r-- | fw/fe310/phone/app/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fw/fe310/phone/app/Makefile b/fw/fe310/phone/app/Makefile new file mode 100644 index 0000000..8169de3 --- /dev/null +++ b/fw/fe310/phone/app/Makefile @@ -0,0 +1,15 @@ +include ../../common.mk + +obj = app.o status.o + + +%.o: %.c %.h + $(CC) $(CFLAGS) -c $< + +%.o: %.S + $(CC) $(CFLAGS) -c $< + +all: $(obj) + +clean: + rm -f *.o |