2
1

eeprog.mk 518 B

12345678910111213141516171819202122
  1. #############################################################
  2. #
  3. # eeprog
  4. #
  5. #############################################################
  6. EEPROG_VERSION = 0.7.6
  7. EEPROG_SITE = http://codesink.org/download
  8. define EEPROG_BUILD_CMDS
  9. $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" -C $(@D)
  10. endef
  11. define EEPROG_INSTALL_TARGET_CMDS
  12. $(INSTALL) -D $(@D)/eeprog $(TARGET_DIR)/usr/bin/eeprog
  13. endef
  14. define EEPROG_UNINSTALL_TARGET_CMDS
  15. rm -f $(TARGET_DIR)/usr/bin/eeprog
  16. endef
  17. $(eval $(call GENTARGETS,package,eeprog))