blob: 82bf5dfac718c7a7283447c6acf9f70200e44a36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/sh
#
# Creates the minimally necessary links to build w/ the Makefile.in files
DIRS="ldso libc libcrypt libintl libm libnsl libpthread libresolv librt libutil"
DIRS2="ldso/ldso ldso/libdl libpthread/linuxthreads libpthread/linuxthreads_db"
for x in ${DIRS} ; do
find ${x} -type f -name Makefile -exec rm -f {} \;
ln -sf ../extra/scripts/Makefile.libs.lvl1 ${x}/Makefile
done
for x in ${DIRS2} ; do
ln -sf ../../extra/scripts/Makefile.libs.lvl2 ${x}/Makefile
done
ln -sf ../../../extra/scripts/Makefile.objs.lvl3 libc/sysdeps/linux/Makefile
ln -sf ../../extra/scripts/Makefile.objs.lvl2 libc/string/Makefile
rm -f Makefile
ln -sf Makefile.in Makefile
exit 0
|