mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-12 21:34:47 +02:00
16 lines
355 B
Markdown
16 lines
355 B
Markdown
To generate `sources.txt`, first run configure ffmpeg
|
|
|
|
../src/configure
|
|
|
|
Then, generate `vars.txt` from config.asm
|
|
|
|
awk '$3 ~ /^[01]$/ {print $2}' config.asm config_components.h >vars.txt
|
|
|
|
Build `sources.txt` from vars.txt and ffmpeg's `Makefile`s
|
|
|
|
make -f sources.mk >../sources.txt
|
|
|
|
Finally, clean up what `./configure` left behind
|
|
|
|
git clean -df .
|