blob: 90d3aefd86655eb58fbc1512f7ae2fdf7ffb8d36 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001DESCRIPTION = "Simple helloworld application"
2SECTION = "examples"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
5
6SRC_URI = "file://helloworld.c"
7
8S = "${WORKDIR}"
9
10do_compile() {
Andrew Geisslerd1e89492021-02-12 15:35:20 -060011 ${CC} ${LDFLAGS} helloworld.c -o helloworld
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012}
13
14do_install() {
15 install -d ${D}${bindir}
16 install -m 0755 helloworld ${D}${bindir}
17}