diff options
Diffstat (limited to 'ldso/util/Makefile')
-rw-r--r-- | ldso/util/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ldso/util/Makefile b/ldso/util/Makefile index b7712f82a..482fed3ce 100644 --- a/ldso/util/Makefile +++ b/ldso/util/Makefile @@ -24,7 +24,7 @@ TOPDIR=../../ include $(TOPDIR)Rules.mak TARGET_CC = $(TOPDIR)extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc -TARGETS = elf_header ldd +TARGETS = ldd ifeq ($(OSTYPE),linux) TARGETS += readelf endif @@ -37,9 +37,6 @@ ifeq ($(strip $(LDSO_LDD_SUPPORT)),y) XXFLAGS=-D__LDSO_LDD_SUPPORT endif -elf_header: - ln -fs $(TOPDIR)include/elf.h - readelf: readelf.c $(HOSTCC) $(HOSTCFLAGS) -I . readelf.c -o $@ strip -x -R .note -R .comment $@ @@ -78,5 +75,5 @@ ldd.target: ldd.c $(STRIPTOOL) -x -R .note -R .comment $@ clean: - rm -f $(TARGETS) *.o *~ core ./elf.h *.target + rm -f $(TARGETS) *.o *~ core *.target |