Blame view

buildroot/buildroot-2016.08.1/package/openpgm/openpgm.mk 885 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  ################################################################################
  #
  # openpgm
  #
  ################################################################################
  
  OPENPGM_VERSION = release-5-2-122
  OPENPGM_SITE = $(call github,steve-o,openpgm,$(OPENPGM_VERSION))
  OPENPGM_LICENSE = LGPLv2.1+
  OPENPGM_LICENSE_FILES = openpgm/pgm/LICENSE
  OPENPGM_INSTALL_STAGING = YES
  OPENPGM_SUBDIR = openpgm/pgm
  OPENPGM_AUTORECONF = YES
  
  # We need to create the m4 directory to make sure that autoreconf will
  # start calling libtoolize. Otherwise it will start with aclocal and it
  # will fail because the m4 directory doesn't exist.
  define OPENPGM_CREATE_M4_DIR
  	mkdir -p $(@D)/$(OPENPGM_SUBDIR)/m4
  endef
  OPENPGM_POST_PATCH_HOOKS += OPENPGM_CREATE_M4_DIR
  
  OPENPGM_CONF_ENV = \
  	ac_cv_file__proc_cpuinfo=yes \
  	ac_cv_file__dev_rtc=no \
  	ac_cv_file__dev_hpet=no
  
  $(eval $(autotools-package))