diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-26 16:47:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-26 16:47:34 +0000 |
commit | 6bca18b65ca9b707dc0e5f0a7689088bce0ed682 (patch) | |
tree | 691b481ff2e16e0d242cbf62c853da28393ad08d /ldso | |
parent | 211085d8b0959aa2d74fda661693dd7fd2643e2b (diff) |
oops again! I forgot to pull in the arch specific stuff, and forgot
to update those makefiles.
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ldso/ldso/Makefile b/ldso/ldso/Makefile index 20977d384..5048bd731 100644 --- a/ldso/ldso/Makefile +++ b/ldso/ldso/Makefile @@ -1,8 +1,6 @@ TOPDIR=../../ include $(TOPDIR)/ld.so-1/Rules.mak -DIRS = $(TARGET_ARCH) - CFLAGS += -DNO_UNDERSCORE -DVERBOSE_DLINKER CFLAGS += -DUSE_CACHE -fPIC -D__PIC__ #-funroll-loops @@ -12,7 +10,10 @@ OBJS=$(COBJS) ELF_LDFLAGS=--shared # using GNU ld -all: lib +all: sysdeps lib + +sysdeps: + make -C $(TARGET_ARCH) lib:: $(OBJS) $(LD) -e _dl_boot $(ELF_LDFLAGS) -o $(DLINKER).$(LDSO_VMAJOR) \ @@ -28,3 +29,4 @@ realclean:: clean:: $(RM) -f $(DLINKER)* core *.o *.a *.s *.i tmp_make foo *~ +.PHONY: sysdeps |