Sort C file names in build.sh
This commit is contained in:
parent
b4c3c64f94
commit
85efbbc7ce
|
@ -14,31 +14,32 @@ find "$builddir" -mindepth 1 -delete
|
|||
cd "$builddir"
|
||||
echo "Entering directory '$PWD'"
|
||||
set -x
|
||||
$CC $CFLAGS -c ../c/bitvector-ops.c
|
||||
$CC $CFLAGS -c ../c/bitvector.c
|
||||
$CC $CFLAGS -c ../c/builtins.c
|
||||
$CC $CFLAGS -c ../c/dirpath.c
|
||||
$CC $CFLAGS -c ../c/dump.c
|
||||
$CC $CFLAGS -c ../c/equalhash.c
|
||||
$CC $CFLAGS -c ../c/flisp.c
|
||||
$CC $CFLAGS -c ../c/flmain.c
|
||||
$CC $CFLAGS -c ../c/iostream.c
|
||||
$CC $CFLAGS -c ../c/string.c
|
||||
$CC $CFLAGS -c ../c/table.c
|
||||
$CC $CFLAGS -c ../c/bitvector-ops.c
|
||||
$CC $CFLAGS -c ../c/bitvector.c
|
||||
$CC $CFLAGS -c ../c/dirpath.c
|
||||
$CC $CFLAGS -c ../c/dump.c
|
||||
$CC $CFLAGS -c ../c/hashing.c
|
||||
$CC $CFLAGS -c ../c/htable.c
|
||||
$CC $CFLAGS -c ../c/int2str.c
|
||||
$CC $CFLAGS -c ../c/ios.c
|
||||
$CC $CFLAGS -c ../c/iostream.c
|
||||
$CC $CFLAGS -c ../c/lltinit.c
|
||||
$CC $CFLAGS -c ../c/ptrhash.c
|
||||
$CC $CFLAGS -c ../c/random.c
|
||||
$CC $CFLAGS -c ../c/socket.c
|
||||
$CC $CFLAGS -c ../c/string.c
|
||||
$CC $CFLAGS -c ../c/table.c
|
||||
$CC $CFLAGS -c ../c/timefuncs.c
|
||||
$CC $CFLAGS -c ../c/utf8.c
|
||||
$CC $LFLAGS -o flisp -lm \
|
||||
builtins.o equalhash.o flisp.o flmain.o iostream.o string.o table.o \
|
||||
bitvector-ops.o bitvector.o dirpath.o dump.o hashing.o htable.o \
|
||||
int2str.o ios.o lltinit.o ptrhash.o random.o socket.o timefuncs.o utf8.o
|
||||
bitvector-ops.o bitvector.o builtins.o dirpath.o dump.o \
|
||||
equalhash.o flisp.o flmain.o hashing.o htable.o int2str.o \
|
||||
ios.o iostream.o lltinit.o ptrhash.o random.o socket.o \
|
||||
string.o table.o timefuncs.o utf8.o
|
||||
ln -s ../scheme-boot/flisp.boot flisp.boot
|
||||
{ set +x; } 2>/dev/null
|
||||
cd ../scheme-core
|
||||
|
|
Loading…
Reference in New Issue