add another wrapper (like g++-uc) to link against both uClibc++ and libstdc++, remove...
[openwrt/svn-archive/archive.git] / XOrg / utils / common.mk
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # blogic@openwrt.org
8
9 PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.2/src/util/
10
11 _CATEGORY:=utils
12
13 include ../../common.mk
14
15 define Build/Configure
16 cd $(PKG_BUILD_DIR); \
17 ./configure \
18 --prefix=${STAGING_DIR} \
19 --sysconfdir=/etc \
20 --mandir=${STAGING_DIR}/share/man \
21 --localstatedir=/var
22 endef
23
24 define Build/Compile
25 make -C $(PKG_BUILD_DIR)
26 endef
27
28