10 lines
134 B
Makefile
Executable File
10 lines
134 B
Makefile
Executable File
include ../Makefile.param
|
|
|
|
|
|
test:
|
|
$(CC) i2c_test.c -static -o i2c_test
|
|
@cp i2c_test $(BSP_TEST_OUT_DIR)
|
|
|
|
clean:
|
|
rm -f *.o i2c_test
|