Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #
  2. # This file was derived from the 'Hello World!' example recipe in the
  3. # Yocto Project Development Manual.
  4. #
  5. SUMMARY = "Simple helloworld application"
  6. SECTION = "examples"
  7. LICENSE = "CLOSED"
  8. #LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
  9. SRC_URI = "file://hello.c \
  10. file://myprint.c \
  11. file://myprint.h \
  12. file://Makefile"
  13.  
  14. S = "${WORKDIR}"
  15.  
  16. #do_compile() {
  17. #${CC} ${LDFLAGS} hello.c -o simplehello
  18. #}
  19. do_install() {
  20. #install -d ${D}${bindir}
  21. #install -m 0755 simplehello ${D}${bindir}
  22. oe_runmake install "DESTDIR=${D}/bin"
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement