aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-applications/rtc-test/rtc-test_1.0.bb
blob: 1203e2360f6aa35be9295f32c8f21ac1964de03f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DESCRIPTION = "Sample application for AMD RTC driver"
SECTION = "applications"
LICENSE = "BSD"
DEPENDS = "readline"
LIC_FILES_CHKSUM = "file://rtc-test.c;md5=ab350f4f921bfc19f7b7938a07f5688a"

SRC_URI = "file://rtc-test.c"

S = "${WORKDIR}"

TARGET_CC_ARCH += "${LDFLAGS}"

do_compile() {
	${CC} rtc-test.c -o rtc-test -lreadline
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 rtc-test ${D}${bindir}
}