diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-02 07:54:13 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-02 07:54:13 +0000 |
commit | 53c4df149163b2df172397ae18cd2e265dfd875b (patch) | |
tree | 5138ec9e0b008e78d80e8c88053334208b36716c /Makefile | |
parent | d62a439a4f32e8e2f8b9c437688b9fc7db91f437 (diff) |
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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -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)/; |