Blame view

buildroot/buildroot-2016.08.1/package/x11r7/mcookie/mcookie.mk 514 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  ################################################################################
  #
  # mcookie
  #
  ################################################################################
  
  MCOOKIE_LICENSE = Public Domain
  
  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))