0849e8193e
Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
23 lines
503 B
Makefile
23 lines
503 B
Makefile
#############################################################
|
|
#
|
|
# eeprog
|
|
#
|
|
#############################################################
|
|
|
|
EEPROG_VERSION = 0.7.6
|
|
EEPROG_SITE = http://codesink.org/download
|
|
|
|
define EEPROG_BUILD_CMDS
|
|
$(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" -C $(@D)
|
|
endef
|
|
|
|
define EEPROG_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/eeprog $(TARGET_DIR)/usr/bin/eeprog
|
|
endef
|
|
|
|
define EEPROG_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/eeprog
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|