d06645d8ed
general case, therefore, combine the toplevel Makefile options such as setting TARGETS into the per-package *.mk file
85 lines
2.7 KiB
Makefile
85 lines
2.7 KiB
Makefile
#############################################################
|
|
#
|
|
# openssh
|
|
#
|
|
#############################################################
|
|
|
|
OPENSSH_SITE:=ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable
|
|
OPENSSH_DIR:=$(BUILD_DIR)/openssh-3.9p1
|
|
OPENSSH_SOURCE:=openssh-3.9p1.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) $(TAR_OPTIONS) -
|
|
toolchain/patch-kernel.sh $(OPENSSH_DIR) package/openssh/ openssh\*.patch
|
|
touch $(OPENSSH_DIR)/.unpacked
|
|
|
|
$(OPENSSH_DIR)/.configured: $(OPENSSH_DIR)/.unpacked
|
|
(cd $(OPENSSH_DIR); rm -rf config.cache; autoconf; \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
LD=$(TARGET_CROSS)gcc \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
./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/sbin \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/man \
|
|
--infodir=/usr/info \
|
|
--includedir=$(STAGING_DIR)/include \
|
|
--disable-lastlog --disable-utmp \
|
|
--disable-utmpx --disable-wtmp --disable-wtmpx \
|
|
--without-x \
|
|
$(DISABLE_NLS) \
|
|
$(DISABLE_LARGEFILE) \
|
|
);
|
|
touch $(OPENSSH_DIR)/.configured
|
|
|
|
$(OPENSSH_DIR)/ssh: $(OPENSSH_DIR)/.configured
|
|
$(MAKE) CC=$(TARGET_CC) -C $(OPENSSH_DIR)
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/scp
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/sftp
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/sftp-server
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh-add
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh-agent
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh-keygen
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh-keyscan
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh-keysign
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/ssh-rand-helper
|
|
-$(STRIP) --strip-unneeded $(OPENSSH_DIR)/sshd
|
|
|
|
$(TARGET_DIR)/usr/bin/ssh: $(OPENSSH_DIR)/ssh
|
|
$(MAKE) CC=$(TARGET_CC) DESTDIR=$(TARGET_DIR) -C $(OPENSSH_DIR) install
|
|
mkdir -p $(TARGET_DIR)/etc/init.d/
|
|
cp $(OPENSSH_DIR)/S50sshd $(TARGET_DIR)/etc/init.d/
|
|
chmod a+x $(TARGET_DIR)/etc/init.d/S50sshd
|
|
rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc
|
|
|
|
openssh: openssl zlib $(TARGET_DIR)/usr/bin/ssh
|
|
|
|
openssh-source: $(DL_DIR)/$(OPENSSH_SOURCE)
|
|
|
|
openssh-clean:
|
|
$(MAKE) -C $(OPENSSH_DIR) clean
|
|
|
|
openssh-dirclean:
|
|
rm -rf $(OPENSSH_DIR)
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(strip $(BR2_PACKAGE_OPENSSH)),y)
|
|
TARGETS+=openssh
|
|
endif
|