Makefile 699 B

12345678910111213141516171819202122232425
  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. PKG_NAME:= e100boot
  5. PKG_VERSION:= 0.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 11fd53e7824dc550e4cffbc4cd114c3e
  8. PKG_SITES:= http://download.tuxfamily.org/crisos/repository/source/
  9. DISTFILES:= ${PKG_NAME}.tar.bz2
  10. WRKDIST= ${WRKDIR}/${PKG_NAME}
  11. include ../rules.mk
  12. all: $(BIN_DIR)/etrax100boot
  13. $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
  14. $(MAKE) -C $(WRKBUILD)
  15. touch $@
  16. $(BIN_DIR)/etrax100boot: $(WRKBUILD)/.compiled
  17. $(INSTALL_BIN) $(WRKBUILD)/sbl/e100boot.stripped $(BIN_DIR)/etrax100boot
  18. include $(TOPDIR)/mk/tools.mk