|
@@ -0,0 +1,24 @@
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+DIRS="ldso libc libcrypt libintl libm libnsl libpthread libresolv librt libutil"
|
|
|
+DIRS2="ldso/ldso ldso/libdl libpthread/linuxthreads libpthread/linuxthreads_db"
|
|
|
+OBJ4="common arm i386 mips powerpc x86_64"
|
|
|
+
|
|
|
+for x in ${DIRS} ; do
|
|
|
+ rm -f ${x}/Makefile
|
|
|
+ ln -sf ../extra/scripts/Makefile.libs.lvl1 ${x}/Makefile
|
|
|
+done
|
|
|
+
|
|
|
+for x in ${DIRS2} ; do
|
|
|
+ rm -f ${x}/Makefile
|
|
|
+ ln -sf ../../extra/scripts/Makefile.libs.lvl2 ${x}/Makefile
|
|
|
+done
|
|
|
+
|
|
|
+for x in ${OBJ4} ; do
|
|
|
+ rm -f libc/sysdeps/linux/${x}/Makefile
|
|
|
+ ln -sf ../../../../extra/scripts/Makefile.objs.lvl4 libc/sysdeps/linux/${x}/Makefile
|
|
|
+done
|
|
|
+
|
|
|
+exit 0
|