Blame view

buildroot/buildroot-2016.08.1/package/zip/zip.mk 1.47 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  ################################################################################
  #
  # zip
  #
  ################################################################################
  
  ZIP_VERSION = 30
  ZIP_SOURCE = zip$(ZIP_VERSION).tgz
  ZIP_SITE = ftp://ftp.info-zip.org/pub/infozip/src
  ZIP_LICENSE = Info-ZIP
  ZIP_LICENSE_FILES = LICENSE
  
  ifeq ($(BR2_PACKAGE_BZIP2),y)
  ZIP_DEPENDENCIES += bzip2
  endif
  
  # Infozip's default CFLAGS.
  ZIP_CFLAGS = -I. -DUNIX
  
  # Disable the support of 16-bit UIDs/GIDs, the test in unix/configure was
  # removed since it can't work for cross-compilation.
  ZIP_CFLAGS += -DUIDGID_NOT_16BIT
  
  # infozip already defines _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE when
  # necessary, redefining it on the command line causes some warnings.
  ZIP_TARGET_CFLAGS = \
  	$(filter-out -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS))
  
  define ZIP_BUILD_CMDS
  	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
  		CFLAGS="$(ZIP_TARGET_CFLAGS) $(ZIP_CFLAGS)" \
  		AS="$(TARGET_CC) -c" \
  		-f unix/Makefile generic
  endef
  
  define ZIP_INSTALL_TARGET_CMDS
  	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
  		prefix=$(TARGET_DIR)/usr
  endef
  
  define HOST_ZIP_BUILD_CMDS
  	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) \
  		CFLAGS="$(HOST_CFLAGS) $(ZIP_CFLAGS)" \
  		AS="$(HOSTCC) -c" \
  		-f unix/Makefile generic
  endef
  
  define HOST_ZIP_INSTALL_CMDS
  	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
  		prefix=$(HOST_DIR)/usr
  endef
  
  $(eval $(generic-package))
  $(eval $(host-generic-package))