12345678910111213141516171819202122232425262728293031 |
- #############################################################
- #
- # devmem2
- #
- #############################################################
- DEVMEM2_SITE = http://free-electrons.com/pub/mirror
- DEVMEM2_SOURCE = devmem2.c
- DEVMEM2_VERSION = 1
- define DEVMEM2_EXTRACT_CMDS
- cp $(DL_DIR)/$($(PKG)_SOURCE) $(@D)/
- endef
- define DEVMEM2_BUILD_CMDS
- $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) devmem2
- endef
- define DEVMEM2_CLEAN_CMDS
- rm -f $(@D)/devmem2
- endef
- define DEVMEM2_INSTALL_TARGET_CMDS
- $(INSTALL) -D $(@D)/devmem2 $(TARGET_DIR)/sbin/devmem2
- endef
- define DEVMEM2_UNINSTALL_TARGET_CMDS
- rm -f $(TARGET_DIR)/sbin/devmem2
- endef
- $(eval $(call GENTARGETS))
|