From 53c4df149163b2df172397ae18cd2e265dfd875b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 2 Feb 2002 07:54:13 +0000 Subject: Several little additions and cleanups. Add getw() and putw(). Add in some missing header files (netipx/ipx.h include/lastlog.h include/sgtty.h include/sys/perm.h) -Erik --- Makefile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2ace59825..f1e74b99a 100644 --- a/Makefile +++ b/Makefile @@ -229,9 +229,11 @@ install_utils: ifeq ($(strip $(HAVE_SHARED)),true) @$(MAKE) -C ldso utils install -m 755 ldso/util/ldd $(PREFIX)$(DEVEL_PREFIX)/bin - install -m 755 ldso/util/readelf $(PREFIX)$(DEVEL_PREFIX)/bin ln -fs $(DEVEL_PREFIX)/bin/ldd $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd - ln -fs $(DEVEL_PREFIX)/bin/readelf $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf + # For now, don't bother with readelf since surely the host + # system has binutils, or we couldn't have gotten this far... + #install -m 755 ldso/util/readelf $(PREFIX)$(DEVEL_PREFIX)/bin + #ln -fs $(DEVEL_PREFIX)/bin/readelf $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-readelf @if [ -x ldso/util/ldconfig ] ; then \ set -x -e; \ install -d $(PREFIX)$(DEVEL_PREFIX)/etc; \ @@ -286,10 +288,10 @@ dist release: distclean cd ..; \ rm -rf uClibc-$(VERSION); \ cp -a uClibc uClibc-$(VERSION); \ - \ - find uClibc-$(VERSION)/ -type d \ - -name CVS \ - -exec rm -rf {} \; ; \ + find uClibc-$(VERSION)/ -type d \ + -name CVS -exec rm -rf {} \; ; \ + find uClibc-$(VERSION)/ -type d \ + -name .\#* -exec rm -rf {} \; ; \ \ tar -cvzf uClibc-$(VERSION).tar.gz --exclude CVS uClibc-$(VERSION)/; -- cgit v1.2.3