blob: a1376370376d77617db6fa41c481e77dec083432 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SUMMARY = "Simple rfdc-read-write application"
require rfdc-examples.inc
do_compile () {
make all BOARD_FLAG=${FLAG} OUTS=${B}/rfdc-read-write RFDC_OBJS=xrfdc_read_write_example.o
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${B}/rfdc-read-write ${D}${bindir}
}
|