Makefile 619 B

1234567891011121314151617181920
  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. ${TOPDIR}/bin/tools/depmaker:
  6. ${CCANDLD.c} -o $(TOPDIR)/bin/tools/depmaker depmaker.c
  7. ${TOPDIR}/bin/tools/pkgrebuild:
  8. ${CCANDLD.c} -o $(TOPDIR)/bin/tools/pkgrebuild pkgrebuild.c strmap.c
  9. ${TOPDIR}/bin/tools/dkgetsz:
  10. ${CCANDLD.c} -Wall -o $@ dkgetsz.c
  11. install: ${TOPDIR}/bin/tools/depmaker ${TOPDIR}/bin/tools/pkgrebuild \
  12. ${TOPDIR}/bin/tools/dkgetsz
  13. include $(TOPDIR)/mk/tools.mk