266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
report ar rc $to/libk.a $obj
done
report ranlib $to/libk.a
fi
if test $build_shared_library == yes; then
report ld -r ${rt_objects[@]} -o $to/boot.o
report ld -shared ${fn_objects[@]} -o $to/libk.so
fi
# fifth pass: compile the executable tools
# against the libraries created in pass 5
for mod in ${modules[@]}; do
for exe in $(scan mod/$mod '*.exe.c'); do
|
|
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
report ar rc $to/libk.a $obj
done
report ranlib $to/libk.a
fi
if test $build_shared_library == yes; then
report ld -r ${rt_objects[@]} -o $to/boot.o
report ld -shared ${fn_objects[@]} ${data_objects[@]} -o $to/libk.so
fi
# fifth pass: compile the executable tools
# against the libraries created in pass 5
for mod in ${modules[@]}; do
for exe in $(scan mod/$mod '*.exe.c'); do
|