11 lines
198 B
Makefile
11 lines
198 B
Makefile
|
|
include ../Makefile.param
|
||
|
|
|
||
|
|
|
||
|
|
test:
|
||
|
|
$(CC) tsensor.c -static -o tsensor
|
||
|
|
$(CC) tsensor_thm.c -static -o tsensor_thm
|
||
|
|
@cp tsensor tsensor_thm $(BSP_TEST_OUT_DIR)
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -f *.o tsensor tsensor_thm
|