summaryrefslogtreecommitdiff
path: root/tools/syslinux/Makefile
blob: 5543813d5af00fd410f359e66672a2c2495ec19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include $(TOPDIR)/rules.mk

PKG_NAME:=		syslinux
PKG_VERSION:=		6.02
PKG_RELEASE:=		1
PKG_MD5SUM:=		086ac1c569d226a5e2ae3d605de09a1d
PKG_SITES:=		http://www.kernel.org/pub/linux/utils/boot/syslinux/

include ../rules.mk
WRKINST:=		${WRKBUILD}/openadk_installroot

install: ${BIN_DIR}/extlinux ${STAGING_HOST_DIR}/usr/share/syslinux/.installed

$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
	#(cd ${WRKBUILD}; ./configure)
	${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' bios installer
	touch $@

$(WRKBUILD)/.installed: ${WRKBUILD}/.compiled
	mkdir -p ${WRKINST}
	${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' \
		INSTALLROOT='${WRKINST}' \
		bios install
	touch $@

${BIN_DIR}/extlinux: $(WRKBUILD)/.installed
	$(INSTALL_BIN) ${WRKINST}/sbin/extlinux \
		${BIN_DIR}

${STAGING_HOST_DIR}/usr/share/syslinux/.installed: ${WRKBUILD}/.installed
	mkdir -p ${STAGING_HOST_DIR}/usr/share
	${CP} ${WRKINST}/usr/share/syslinux ${STAGING_HOST_DIR}/usr/share
	touch ${STAGING_HOST_DIR}/usr/share/syslinux/.installed

include $(TOPDIR)/mk/tools.mk