unmangle Makefile
[openwrt/svn-archive/archive.git] / libs / libowfat / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 LOWFAT_VERSION=0.28
12
13 PKG_NAME:=libowfat
14 PKG_VERSION:=$(LOWFAT_VERSION)
15 PKG_RELEASE:=1
16
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_SOURCE_URL:=http://dl.fefe.de
19 PKG_MD5SUM:=6bbee9a86506419657d87123b7a6f2c1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 # set to 1 to enable debugging
24 DEBUG=
25
26 define Package/libowfat
27 SECTION:=libs
28 CATEGORY:=Libraries
29 TITLE:=reimplemented libdjb under GPL
30 endef
31
32 define Build/Configure
33 endef
34
35 TARGET_CFLAGS += $(FPIC)
36 LOWFAT_MAKEOPTS = $(TARGET_CONFIGURE_OPTS) \
37 COPTS="$(TARGET_CFLAGS)" \
38 DEBUG="$(DEBUG)" \
39 VERSION="$(LOWFAT_VERSION)" \
40 CPPFLAGS="-I$(PKG_BUILD_DIR) -I$(STAGING_DIR)/usr/include" \
41 OS="Linux"
42
43 # work around a nasty gcc bug
44 ifneq ($(CONFIG_GCC_VERSION_4_2_4),)
45 LOWFAT_MAKEOPTS += WOPTS=""
46 endif
47
48 define Build/Compile
49 $(MAKE) -C $(PKG_BUILD_DIR) $(LOWFAT_MAKEOPTS)
50 endef
51
52 define Build/InstallDev
53 mkdir -p $(1)/usr/include/libowfat
54 $(CP) $(PKG_BUILD_DIR)/*.h $(1)/usr/include/libowfat
55 $(INSTALL_DIR) $(1)/usr/lib
56 $(CP) $(PKG_BUILD_DIR)/*.a $(1)/usr/lib
57 endef
58
59 $(eval $(call BuildPackage,libowfat))