lpcm with tsmuxer cleanup by Andrew
[goodguy/cinelerra.git] / cinelerra-5.1 / tools / makeappimagetool / bld.sh
1 # Build for for CinGG's own version of linuxdeploy, suitable for
2 # aarch64 and armhf too.
3
4 set +x
5
6 ( ./autogen.sh
7   ./configure
8   make -j$(nproc) ) 2>&1 | tee log
9
10 # TODO: avoid building with -g (=debug) option, causes
11 # large files. This options is put there by ./configure. This
12 # required objcopy, which is needed for CinGG build anyway.
13
14 # for debug, comment this out
15 objcopy -S makeappimage
16
17 # Because this is not part of Cinelerra proper, there is no need
18 # to rebuild it each time. To force a rebuild, remove the MakeAppImage
19 # executable from the tools directory, then it will be rebuild next
20 # time the CinGG AppImage is built.
21 # All generated files except the build log are deleted by "autogen.sh clean"
22
23 mv makeappimage ..
24
25 ./autogen.sh clean