1################################################################################ 2# 3# mcookie 4# 5################################################################################ 6 7MCOOKIE_LICENSE = Public Domain 8 9define MCOOKIE_EXTRACT_CMDS 10 cp package/x11r7/mcookie/mcookie.c $(@D)/ 11endef 12 13define MCOOKIE_BUILD_CMDS 14 (cd $(@D); $(TARGET_CC) -Wall -Os -s mcookie.c -o mcookie) 15endef 16 17define MCOOKIE_INSTALL_TARGET_CMDS 18 install -m 0755 -D $(@D)/mcookie $(TARGET_DIR)/usr/bin/mcookie 19endef 20 21$(eval $(generic-package)) 22