-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.mk.in
53 lines (49 loc) · 2.03 KB
/
tools.mk.in
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
# tools.mk
#
# This file is part of mkimage
# Copyright (C) 2007-2009 Alexey Gladkov <[email protected]>
#
# This file is covered by the GNU General Public License,
# which should be included with mkimage as the file COPYING.
#
ifndef INCLUDED_TOOLS_MK
INCLUDED_TOOLS_MK = 1
RUN_MAKE = $(TOOLSDIR)/mki-run-make
GET_MAKEFILE = $(TOOLSDIR)/mki-get-makefile
GET_TOPDIR = $(TOOLSDIR)/mki-get-topdir
MAKE_WORKDIR = $(TOOLSDIR)/mki-create-workdir
COUNT_CPU = $(TOOLSDIR)/mki-count-cpu
CHECK_OBSOLETE = $(TOOLSDIR)/mki-check-obsolete
EXPAND_PKGS ?= $(TOOLSDIR)/mki-expand-pkgs
CHROOT_MKAPTBOX ?= $(TOOLSDIR)/mki-mkaptbox
CHROOT_CACHE ?= $(TOOLSDIR)/mki-cache
CHROOT_INVALIDATE_CACHE ?= $(TOOLSDIR)/mki-invalidate-cache
CHROOT_BUILD_PROPAGATOR ?= $(TOOLSDIR)/mki-build-propagator
CHROOT_CREATE_FAKEDEV ?= $(TOOLSDIR)/mki-fakedev
CHROOT_SPLIT ?= $(TOOLSDIR)/mki-split
CHROOT_SCRIPTS ?= $(TOOLSDIR)/mki-scripts
CHROOT_IMAGE_SCRIPTS ?= $(TOOLSDIR)/mki-image-scripts
CHROOT_IMAGE_PKGS ?= $(TOOLSDIR)/mki-image-pkgs
CHROOT_PREPARE ?= $(TOOLSDIR)/mki-prepare
CHROOT_IMAGE_PREPARE ?= $(TOOLSDIR)/mki-image-prepare
CHROOT_PACK ?= $(TOOLSDIR)/mki-pack
CHROOT_PACK_RESULTS ?= $(TOOLSDIR)/mki-pack-results
CHROOT_CLEAN ?= $(TOOLSDIR)/mki-clean
CHROOT_EXEC ?= $(TOOLSDIR)/mki-exec
CHROOT_RUN ?= $(TOOLSDIR)/mki-run
CHROOT_COPY_SUBDIRS ?= $(TOOLSDIR)/mki-copy-subdirs
CHROOT_COPY_PKGS ?= $(TOOLSDIR)/mki-copy-pkgs
CHROOT_COPY_TREE ?= $(TOOLSDIR)/mki-copy-tree
CHROOT_COPY_ISOLINUX ?= $(TOOLSDIR)/mki-copy-isolinux
CHROOT_COPY_PXELINUX ?= $(TOOLSDIR)/mki-copy-pxelinux
CHROOT_COPY_SYSLINUX ?= $(TOOLSDIR)/mki-copy-syslinux
CHROOT_COPY_IEEE1275BOOT?= $(TOOLSDIR)/mki-copy-ieee1275boot
CHROOT_COPY_GRUBAA64BOOT?= $(TOOLSDIR)/mki-copy-grubaa64boot
CHROOT_COPY_GRUBPCBOOT ?= $(TOOLSDIR)/mki-copy-grubpcboot
CHROOT_COPY_EFIBOOT ?= $(TOOLSDIR)/mki-copy-efiboot
CHROOT_COPY_E2KBOOT ?= $(TOOLSDIR)/mki-copy-e2kboot
CHROOT_INSTALL ?= $(TOOLSDIR)/mki-install
CHROOT_IMAGE_INSTALL ?= $(TOOLSDIR)/mki-image-install
CHROOT_IMAGE_PATCHES ?= $(CURDIR)/mki-image-patches
endif