e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
492 B
Makefile
23 lines
492 B
Makefile
#############################################################
|
|
#
|
|
# mcookie
|
|
#
|
|
#############################################################
|
|
|
|
# Source included in Buildroot
|
|
MCOOKIE_SOURCE =
|
|
|
|
define MCOOKIE_EXTRACT_CMDS
|
|
cp package/x11r7/mcookie/mcookie.c $(@D)/
|
|
endef
|
|
|
|
define MCOOKIE_BUILD_CMDS
|
|
(cd $(@D); $(TARGET_CC) -Wall -Os -s mcookie.c -o mcookie)
|
|
endef
|
|
|
|
define MCOOKIE_INSTALL_TARGET_CMDS
|
|
install -m 0755 -D $(@D)/mcookie $(TARGET_DIR)/usr/bin/mcookie
|
|
endef
|
|
|
|
$(eval $(generic-package))
|