WF32 board by itself already has a microSD socket. It's useless for RetroBSD though, as it is not connected to any of available SPI ports (must use GPIO instead). Fortunately, a cheap shield is widely available, which adds a microSD slot connected to SPI2 pins.
25 lines
743 B
Makefile
25 lines
743 B
Makefile
|
|
# Programs that live in subdirectories, and have makefiles of their own.
|
|
#
|
|
SUBDIR = baremetal duinomite duinomite-uart duinomite-e \
|
|
duinomite-e-uart explorer16 max32 max32-eth maximite \
|
|
meb starter-kit sdxl ubw32 ubw32-uart \
|
|
ubw32-uart-sdram baremetal fubarino mmb-mx7 maximite-color \
|
|
32mxsdram-uart picadillo wf32
|
|
|
|
default:
|
|
|
|
all:
|
|
-for i in $(SUBDIR); do ${MAKE} -C $$i all; done
|
|
|
|
install:
|
|
|
|
clean:
|
|
-for i in $(SUBDIR); do ${MAKE} -C $$i clean; done
|
|
find .. -name \*~ | xargs rm -f
|
|
|
|
reconfig:
|
|
-for i in $(SUBDIR); do echo $$i; \
|
|
I=`echo $$i | awk '{print toupper($$0)}'`; \
|
|
(cd $$i; ../../../tools/configsys/config $$I); done
|