live-bootstrap/sysa/sed.kaem
Andrius Štikonas db01be6563 Build sed 1.18.
2021-01-11 00:44:34 +00:00

17 lines
262 B
Bash
Executable file

#!/bin/sh
set -ex
# Variables
bindir=/after/bin
# Compile
tcc -c getopt1.c
tcc -c getopt.c
tcc -c regex.c
tcc -c utils.c
tcc alloca.c -Dalloca -c
tcc -c -DHAVE_BCOPY sed.c
# Link
tcc -static -o ${bindir}/sed alloca.o getopt1.o getopt.o regex.o sed.o utils.o