19 lines
483 B
BlitzBasic
Executable File
19 lines
483 B
BlitzBasic
Executable File
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
|
|
LICENSE = "CLOSED"
|
|
SRC_URI += " \
|
|
file://ast-jtag.c \
|
|
file://ast-jtag.h \
|
|
file://jtag.h \
|
|
file://main.c \
|
|
file://Makefile \
|
|
file://svf.c \
|
|
file://svf.h"
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
inherit pkgconfig
|
|
S = "${WORKDIR}"
|
|
EXTRA_OEMAKE += "INSTALL_DIR=${D}${bindir}"
|
|
|
|
do_install(){
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/svf ${D}${bindir}
|
|
} |