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