1#!/bin/sh 2 3BUILD='cc -funsigned-char -I scripts/prereq -I . -Os -ffunction-sections -fdata-sections -fno-asynchronous-unwind-tables -fno-strict-aliasing -DTOYBOX_VERSION=""' 4LINK='' 5FILES=" 6main.c toys/lsb/gzip.c toys/other/readlink.c toys/other/which.c 7toys/pending/tr.c toys/posix/basename.c toys/posix/cat.c toys/posix/chmod.c 8toys/posix/cmp.c toys/posix/dirname.c toys/posix/echo.c toys/posix/fold.c 9toys/posix/grep.c toys/posix/head.c toys/posix/ln.c toys/posix/ls.c 10toys/posix/mkdir.c toys/posix/od.c toys/posix/rm.c toys/posix/sed.c 11toys/posix/sort.c toys/posix/tail.c toys/posix/tee.c toys/posix/uname.c 12toys/posix/wc.c toys/posix/xargs.c 13" 14 15$BUILD lib/*.c $FILES $LINK -o toybox-prereq 16