Makefile 322 B

1234567891011
  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}/mkimage
  5. ${BIN_DIR}/mkimage: mkimage.c crc32.c
  6. $(CC_FOR_BUILD) ${FLAGS_FOR_BUILD} -o $@ mkimage.c crc32.c
  7. include $(TOPDIR)/mk/tools.mk