Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SUMMARY = "Hello World Application"
- DESCRIPTION = "Sample Hello World Application"
- LICENSE = "MIT"
- LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
- SRC_URI = "file://helloworld.c "
- do_compile() {
- ${CC} helloworld.c -o helloworld
- }
- do_install() {
- install -d ${bindir}
- install -m 0755 helloworld ${bindir}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement