blob: ca0df7b542021aecc367f378f481e2d27d879006 (
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 '!($0 ~ "^;") {print $2}' config.asm >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 .
|