summaryrefslogtreecommitdiff
path: root/tools/adk/Makefile
blob: edd559f85895f3b7b7f7e950afa67acfdd89bb77 (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: ${STAGING_HOST_DIR}/usr/bin/depmaker ${STAGING_HOST_DIR}/usr/bin/pkgrebuild ${STAGING_HOST_DIR}/usr/bin/dkgetsz

${STAGING_HOST_DIR}/usr/bin/depmaker: depmaker.c
	${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ depmaker.c

${STAGING_HOST_DIR}/usr/bin/pkgrebuild: pkgrebuild.c strmap.c
	${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ pkgrebuild.c strmap.c

${STAGING_HOST_DIR}/usr/bin/dkgetsz: dkgetsz.c
	${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ dkgetsz.c

include $(TOPDIR)/mk/tools.mk