16 lines
163 B
Bash
Executable File
16 lines
163 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
(
|
|
cd programs
|
|
|
|
make zstd-pgo
|
|
make DESTDIR="$1" PREFIX=/usr install
|
|
)
|
|
|
|
(
|
|
cd lib
|
|
|
|
make
|
|
make DESTDIR="$1" PREFIX=/usr install
|
|
)
|