source: freewrt/package/serdisplib/Makefile@ ca629a6

freewrt_1_0 freewrt_2_0
Last change on this file since ca629a6 was 9f572e3, checked in by Dirk Nehring <dnehring@…>, 19 years ago

drop --enable-largefile from makefiles. 2GB should be enough in most cases

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@975 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.1 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:= serdisplib
10PKG_VERSION:= 1.96
11PKG_RELEASE:= 1
12PKG_MD5SUM:= b074e02d8d63f34cba8ec45c23f63f78
13
14PKG_SOURCE_URL:= @SF/serdisplib
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,SERDISPLIB,serdisplib,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured: $(WRKBUILD)/.prepared
22 (cd $(WRKBUILD); \
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 ac_cv_func_malloc_0_nonnull=yes \
28 ./configure \
29 --target=$(GNU_TARGET_NAME) \
30 --host=$(GNU_TARGET_NAME) \
31 --build=$(GNU_HOST_NAME) \
32 --program-prefix="" \
33 --program-suffix="" \
34 --prefix=/usr \
35 --exec-prefix=/usr \
36 --bindir=/usr/bin \
37 --datadir=/usr/share \
38 --includedir=/usr/include \
39 --infodir=/usr/share/info \
40 --libdir=/usr/lib \
41 --libexecdir=/usr/lib \
42 --localstatedir=/var \
43 --mandir=/usr/share/man \
44 --sbindir=/usr/sbin \
45 --sysconfdir=/etc \
46 --disable-nls \
47 --enable-shared \
48 --disable-static \
49 --with-gnu-ld \
50 );
51 touch $@
52
53$(WRKBUILD)/.built:
54 $(MAKE) -C $(WRKBUILD) all
55 touch $@
56
57$(IPKG_SERDISPLIB):
58 install -d -m0755 $(IDIR_SERDISPLIB)/usr/lib
59 $(CP) $(WRKBUILD)/lib/libserdisp.so.* $(IDIR_SERDISPLIB)/usr/lib
60 $(RSTRIP) $(IDIR_SERDISPLIB)
61 $(IPKG_BUILD) $(IDIR_SERDISPLIB) $(PACKAGE_DIR)
62
63$(STAGING_DIR)/usr/lib/libserdisp.so: $(WRKBUILD)/.built
64 mkdir -p $(STAGING_DIR)/usr/include
65 $(CP) $(WRKBUILD)/include/serdisplib $(STAGING_DIR)/usr/include/
66 mkdir -p $(STAGING_DIR)/usr/lib
67 $(CP) $(WRKBUILD)/lib/libserdisp.{a,so*} $(STAGING_DIR)/usr/lib/
68 touch $@
69
70install-dev: $(STAGING_DIR)/usr/lib/libserdisp.so
71
72uninstall-dev:
73 rm -rf \
74 $(STAGING_DIR)/usr/include/serdisplib \
75 $(STAGING_DIR)/usr/lib/libserdisp.{a,so*} \
76
77compile-targets: install-dev
78clean-targets: uninstall-dev
Note: See TracBrowser for help on using the repository browser.