Makefile 544 B

1234567891011121314151617
  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. install: ${BIN_DIR}/depmaker ${BIN_DIR}/pkgrebuild ${BIN_DIR}/dkgetsz
  5. ${BIN_DIR}/depmaker: depmaker.c
  6. ${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ depmaker.c
  7. ${BIN_DIR}/pkgrebuild: pkgrebuild.c strmap.c
  8. ${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ pkgrebuild.c strmap.c
  9. ${BIN_DIR}/dkgetsz: dkgetsz.c
  10. ${CC_FOR_BUILD} ${FLAGS_FOR_BUILD} -o $@ dkgetsz.c
  11. include $(TOPDIR)/mk/tools.mk