9 lines
192 B
Makefile
Executable File
9 lines
192 B
Makefile
Executable File
include ../Makefile.param
|
|
BSP_TEST_CUR_DIR:=$(shell pwd)
|
|
systimer-test:
|
|
$(CC) systimer_test.c -static -o systimer_test
|
|
|
|
@cp systimer_test $(BSP_TEST_OUT_DIR)
|
|
clean:
|
|
rm -f *.o systimer_test
|