Quellcode durchsuchen

oops again! I forgot to pull in the arch specific stuff, and forgot
to update those makefiles.
-Erik

Eric Andersen vor 23 Jahren
Ursprung
Commit
6bca18b65c
1 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen
  1. 5 3
      ldso/ldso/Makefile

+ 5 - 3
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