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