From 07cff613bc08535341cc00ce4f8dcf4cca3489b3 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 9 Dec 2013 15:47:07 +0100 Subject: add tools/cdrtools --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index ee096db61..e78a7fe42 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk -TARGETS:=adk mkcrypt cpio mkimage genext2fs +TARGETS:=adk mkcrypt cpio mkimage genext2fs cdrtools TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS)) -- cgit v1.2.3 From 1d41dfd46f6f45ed351a677fb22eea072c6530df Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Mon, 9 Dec 2013 15:47:08 +0100 Subject: add tools/syslinux --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index e78a7fe42..86eb09e22 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk -TARGETS:=adk mkcrypt cpio mkimage genext2fs cdrtools +TARGETS:=adk mkcrypt cpio mkimage genext2fs cdrtools syslinux TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS)) -- cgit v1.2.3 From 422fe42ea4a4f5c5f868736e17a0462e1e5c1c6b Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 16 Dec 2013 13:11:33 +0100 Subject: small fixes for iso target --- tools/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index 86eb09e22..4a5f1ec92 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -3,7 +3,10 @@ include $(TOPDIR)/rules.mk -TARGETS:=adk mkcrypt cpio mkimage genext2fs cdrtools syslinux +TARGETS:=adk mkcrypt cpio mkimage genext2fs +ifeq ($(ADK_TARGET_ROOTFS_ISO),y) +TARGETS+=cdrtools syslinux +endif TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS)) -- cgit v1.2.3 From 0fc1d605ffc85952238ddda017f79158a36a0826 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 17 Dec 2013 15:10:18 +0100 Subject: add gperf to tools, required for eglibc builds. do not ask the user to install it --- tools/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index 4a5f1ec92..e644efbb1 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -7,6 +7,9 @@ TARGETS:=adk mkcrypt cpio mkimage genext2fs ifeq ($(ADK_TARGET_ROOTFS_ISO),y) TARGETS+=cdrtools syslinux endif +ifeq ($(ADK_TARGET_LIB_EGLIBC),y) +TARGETS+=gperf +endif TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS)) -- cgit v1.2.3