Makefile 449 B

1234567891011121314
  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. ${TOPDIR}/bin/tools/depmaker:
  5. $(HOSTCC) -o $(TOPDIR)/bin/tools/depmaker depmaker.c
  6. ${TOPDIR}/bin/tools/pkgrebuild:
  7. $(HOSTCC) -o $(TOPDIR)/bin/tools/pkgrebuild pkgrebuild.c strmap.c
  8. install: ${TOPDIR}/bin/tools/depmaker ${TOPDIR}/bin/tools/pkgrebuild
  9. include $(TOPDIR)/mk/tools.mk