blob: c5b8e96bcd9ef98aabbda182695d88d556452f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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 .
|