1234567891011121314151617 |
- # 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
|