Makefile 542 B

123456789101112131415161718
  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. ${TOPDIR}/bin/tools/pt:
  9. $(HOSTCC) -o $(TOPDIR)/bin/tools/pt pt.c
  10. install: ${TOPDIR}/bin/tools/depmaker ${TOPDIR}/bin/tools/pkgrebuild \
  11. $(TOPDIR)/bin/tools/pt
  12. include $(TOPDIR)/mk/tools.mk