summaryrefslogtreecommitdiff
path: root/tools/adk/Makefile
blob: e3c9aceed06ea57e93392b800029ff39d6098082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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

install: ${TOOLS_DIR}/depmaker ${TOOLS_DIR}/pkgrebuild ${TOOLS_DIR}/dkgetsz

${TOOLS_DIR}/depmaker: depmaker.c
	${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ depmaker.c

${TOOLS_DIR}/pkgrebuild: pkgrebuild.c strmap.c
	${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ pkgrebuild.c strmap.c

${TOOLS_DIR}/dkgetsz: dkgetsz.c
	${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ dkgetsz.c

include $(TOPDIR)/mk/tools.mk