57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
#############################################################
|
|
#
|
|
# openssh
|
|
#
|
|
#############################################################
|
|
|
|
OPENSSH_SITE:=ftp://ftp.tux.org/bsd/openbsd/OpenSSH/portable/
|
|
OPENSSH_DIR:=$(BUILD_DIR)/openssh-3.5p1
|
|
OPENSSH_SOURCE:=openssh-3.5p1.tar.gz
|
|
|
|
$(DL_DIR)/$(OPENSSH_SOURCE):
|
|
$(WGET) -P $(DL_DIR) $(OPENSSH_SITE)/$(OPENSSH_SOURCE)
|
|
|
|
$(OPENSSH_DIR)/.unpacked: $(DL_DIR)/$(OPENSSH_SOURCE)
|
|
zcat $(DL_DIR)/$(OPENSSH_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
|
touch $(OPENSSH_DIR)/.unpacked
|
|
|
|
$(OPENSSH_DIR)/.configured: $(OPENSSH_DIR)/.unpacked
|
|
(cd $(OPENSSH_DIR); rm -rf config.cache; \
|
|
PATH=$(STAGING_DIR)/bin:$$PATH CC=$(TARGET_CC1) \
|
|
./configure \
|
|
--target=$(GNU_TARGET_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 \
|
|
--includedir=$(STAGING_DIR)/include \
|
|
--disable-lastlog --disable-utmp \
|
|
--disable-utmpx --disable-wtmp --disable-wtmpx \
|
|
--disable-nls --without-x \
|
|
);
|
|
touch $(OPENSSH_DIR)/.configured
|
|
|
|
$(OPENSSH_DIR)/ssh: $(OPENSSH_DIR)/.configured
|
|
$(MAKE) CC=$(TARGET_CC1) -C $(OPENSSH_DIR)
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/*.so*
|
|
|
|
$(TARGET_DIR)/usr/bin/ssh: $(OPENSSH_DIR)/ssh
|
|
$(MAKE) CC=$(TARGET_CC1) DESTDIR=$(TARGET_DIR) -C $(OPENSSH_DIR) install
|
|
rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
|
|
|
openssh: $(TARGET_DIR)/usr/bin/ssh
|
|
|
|
openssh-clean:
|
|
$(MAKE) -C $(OPENSSH_DIR) clean
|
|
|
|
openssh-dirclean:
|
|
rm -rf $(OPENSSH_DIR)
|
|
|