repo/core/make/build

13 lines
175 B
Plaintext
Raw Normal View History

2019-06-17 20:32:23 -06:00
#!/bin/sh -e
export DESTDIR="$1"
export PREFIX=/usr
2020-09-30 00:05:16 -06:00
cc -o make *.c
./make
./make test
2019-06-17 20:32:23 -06:00
mkdir -p "$1/usr/bin"
cp -f make "$1/usr/bin/pdpmake"
ln -s pdpmake "$1/usr/bin/make"