10 lines
139 B
Makefile
10 lines
139 B
Makefile
|
|
include ../Makefile.param
|
||
|
|
|
||
|
|
|
||
|
|
test:
|
||
|
|
$(CC) sdio_test.c -static -o sdio_test
|
||
|
|
@cp sdio_test $(BSP_TEST_OUT_DIR)
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f *.o sdio_test
|