From 85efbbc7cebf213052c9ccb4419ad56a079895eb Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Fri, 9 Aug 2019 17:30:49 +0300 Subject: [PATCH] Sort C file names in build.sh --- scripts/build.sh | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index 7b7036a..36c0afa 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -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