mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 17:38:27 +02:00
3ac1acb9ea
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30 3c298f89-4303-0410-b956-a3cf2f4a3e73
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
TN5250_SITE:=http://aleron.dl.sourceforge.net/sourceforge/tn5250
|
|
TN5250_DIR:=$(BUILD_DIR)/tn5250-0.16.4
|
|
TN5250_SOURCE:=tn5250-0.16.4.tar.gz
|
|
|
|
$(DL_DIR)/$(TN5250_SOURCE):
|
|
$(WGET) -P $(DL_DIR) $(TN5250_SITE)/$(TN5250_SOURCE)
|
|
|
|
$(TN5250_DIR)/.dist: $(DL_DIR)/$(TN5250_SOURCE)
|
|
gunzip -c $(DL_DIR)/$(TN5250_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
|
-touch $(TN5250_DIR)/.dist
|
|
|
|
$(TN5250_DIR)/.configured: $(TN5250_DIR)/.dist
|
|
(cd $(TN5250_DIR); rm -rf config.cache; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
./configure \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--bindir=/usr/bin \
|
|
--sbindir=/usr/sbin \
|
|
--libexecdir=/usr/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/man \
|
|
--infodir=/usr/info \
|
|
$(DISABLE_NLS) \
|
|
--with-slang --without-x --without-ssl \
|
|
);
|
|
touch $(TN5250_DIR)/.configured
|
|
|
|
$(TN5250_DIR)/tn5250: $(TN5250_DIR)/.configured
|
|
$(MAKE) CC=$(TARGET_CC) -C $(TN5250_DIR)
|
|
|
|
$(TARGET_DIR)/usr/bin/tn5250: $(TN5250_DIR)/tn5250
|
|
install -c $(TN5250_DIR)/tn5250 $(TARGET_DIR)/usr/bin/tn5250
|
|
|
|
tn5250: uclibc slang $(TARGET_DIR)/usr/bin/tn5250
|
|
|
|
tn5250-source: $(DL_DIR)/$(TN5250_SOURCE)
|
|
|
|
tn5250-clean:
|
|
$(MAKE) -C $(TN5250_DIR) clean
|
|
|
|
tn5250-dirclean:
|
|
rm -rf $(TN5250_DIR)
|
|
|
|
|
|
|