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