micro-utils/build.sh
Your Name 01549a5292 .
2023-10-23 13:21:17 +03:00

22 lines
409 B
Bash

#!/bin/sh
if [ -z $CC ]; then
CC=cc
fi
if [ -z $CFLAGS ]; then
CFLAGS="-s -Os -pedantic -Wall -Wextra"
fi
echo "ENV: CC: " $CC "| CFLAGS: " $CFLAGS
if [ $1 = "clean" ]; then
rm bin/*
elif [ $1 = "rootfs" ]; then
applets="coreutils/* miscutils/* console-tools/* networking/*"
for i in $applets; do
echo CC $i
$CC $CFLAGS $i -o $(echo bin/$(basename $i .c))
done
else
echo $0 "[rootfs / clean]"
fi