11 lines
198 B
Makefile
Executable File
11 lines
198 B
Makefile
Executable File
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
|