summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-02 07:54:13 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-02 07:54:13 +0000
commit53c4df149163b2df172397ae18cd2e265dfd875b (patch)
tree5138ec9e0b008e78d80e8c88053334208b36716c /Makefile
parentd62a439a4f32e8e2f8b9c437688b9fc7db91f437 (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--Makefile14
1 files changed, 8 insertions, 6 deletions
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)/;