source: freewrt/package/libol/Makefile@ 9036ea5

freewrt_1_0 freewrt_2_0
Last change on this file since 9036ea5 was c8b93bd, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

major package Makefile cleanup. remove mostly-clean, add licence header, always use RSTRIP varibale for stripping, rename some init scripts, indent

git-svn-id: svn://www.freewrt.org/trunk/freewrt@600 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.3 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= libol
10PKG_VERSION:= 0.3.18
11PKG_RELEASE:= 1
12PKG_MD5SUM:= cbadf4b7ea276dfa85acc38a1cc5ff17
13
14PKG_SOURCE_URL:= http://www.balabit.com/downloads/libol/0.3
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,LIBOL,libol,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
23 $(TARGET_CONFIGURE_OPTS) \
24 CFLAGS="$(TARGET_CFLAGS)" \
25 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
26 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
27 ./configure \
28 --target=$(GNU_TARGET_NAME) \
29 --host=$(GNU_TARGET_NAME) \
30 --build=$(GNU_HOST_NAME) \
31 --program-prefix="" \
32 --program-suffix="" \
33 --prefix=/usr \
34 --exec-prefix=/usr \
35 --bindir=/usr/bin \
36 --datadir=/usr/share \
37 --includedir=/usr/include \
38 --infodir=/usr/share/info \
39 --libdir=/usr/lib \
40 --libexecdir=/usr/lib \
41 --localstatedir=/var \
42 --mandir=/usr/share/man \
43 --sbindir=/usr/sbin \
44 --sysconfdir=/etc \
45 --enable-largefile \
46 --disable-nls \
47 --enable-shared \
48 --enable-static \
49 )
50 touch $@
51
52$(WRKBUILD)/.built:
53 rm -rf $(WRKINST)
54 mkdir -p $(WRKINST)
55 # pass CFLAGS again to override -O2 set by configure
56 $(MAKE) -C $(WRKBUILD) \
57 CFLAGS="$(TARGET_CFLAGS)" \
58 DESTDIR="$(WRKINST)" \
59 all install
60 touch $@
61
62$(IPKG_LIBOL):
63 install -d -m0755 $(IDIR_LIBOL)/usr/lib
64 $(CP) $(WRKINST)/usr/lib/libol.so.* $(IDIR_LIBOL)/usr/lib/
65 $(RSTRIP) $(IDIR_LIBOL)
66 $(IPKG_BUILD) $(IDIR_LIBOL) $(PACKAGE_DIR)
67
68$(STAGING_DIR)/usr/lib/libol.so: $(WRKBUILD)/.built
69 mkdir -p $(STAGING_DIR)/usr/bin
70 $(CP) $(WRKINST)/usr/bin/libol-config $(STAGING_DIR)/usr/bin/
71 mkdir -p $(STAGING_DIR)/usr/include
72 $(CP) $(WRKINST)/usr/include/libol $(STAGING_DIR)/usr/include/
73 mkdir -p $(STAGING_DIR)/usr/lib
74 $(CP) $(WRKINST)/usr/lib/libol.{*a,so*} $(STAGING_DIR)/usr/lib/
75 touch $@
76
77install-dev: $(STAGING_DIR)/usr/lib/libol.so
78
79uninstall-dev:
80 rm -rf \
81 $(STAGING_DIR)/usr/bin/libol-config \
82 $(STAGING_DIR)/usr/include/libol \
83 $(STAGING_DIR)/usr/lib/libol.{*a,so*} \
84
85compile-targets: install-dev
86clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.