Makefile 532 B

12345678910111213141516171819
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. CCANDLD.c= ${HOSTCC} ${HOSTCFLAGS} ${HOSTCPPFLAGS} ${HOSTLDFLAGS}
  5. ${TOOLS_DIR}/depmaker:
  6. ${CCANDLD.c} -Wall -o $@ depmaker.c
  7. ${TOOLS_DIR}/pkgrebuild:
  8. ${CCANDLD.c} -Wall -o $@ pkgrebuild.c strmap.c
  9. ${TOOLS_DIR}/dkgetsz:
  10. ${CCANDLD.c} -Wall -o $@ dkgetsz.c
  11. install: ${TOOLS_DIR}/depmaker ${TOOLS_DIR}/pkgrebuild ${TOOLS_DIR}/dkgetsz
  12. include $(TOPDIR)/mk/tools.mk