blob: 3adfac362a553ad268768877661f342e1f2a4eba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require starterware.inc
PR = "${INC_PR}.0"
ALLOW_EMPTY_${PN} = "1"
CLEANBROKEN = "1"
do_compile() {
:
}
do_install () {
install -d ${D}${includedir}/ti/starterware
find . -name "*.h" -type f | xargs -I {} cp --parents --no-preserve=ownership {} ${D}${includedir}/ti/starterware
}
|