mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 03:41:10 +08:00

Use reverse DNS naming for .desktop and .metainfo.xml as your supposed to do nowadays according to freedesktop.org. This also happens to match what is mandated by flatpak, so it simplifies the flatpak post install script a little. + cleanup the mess that flatpak builds can leave behind when you do a clean.
20 lines
909 B
Bash
Executable File
20 lines
909 B
Bash
Executable File
#!/bin/bash
|
|
make clean 2>/dev/null
|
|
make distclean 2>/dev/null
|
|
find -name \*~ -delete
|
|
find -name BuildLog.htm -delete
|
|
rm -Rfv autom4te.cache stderr.txt stdout.txt
|
|
for i in DOSBox.exe DOSBox.map zlibstat.lib SDL.dll SDL.lib SDL_net.dll SDL_net.lib SDLmain.lib zlib.lib libpng.lib libpng16.lib libpng16.exp libpng16d.lib libpng16d.exp vc90.pdb; do rm -v $i >/dev/null 2>&1; done
|
|
for ext in intermediate.manifest res dep aps pdb bsc exp obj ncb opt plg idb pch; do find -name \*.$ext -exec rm -v {} +; done
|
|
rm -Rfv visualc_net/Debug
|
|
rm -Rfv visualc_net/Release
|
|
rm -Rfv visualc_net/libpng/projects/visualc71/Win32_LIB_Debug
|
|
rm -Rfv visualc_net/libpng/projects/visualc71/Win32_LIB_Release
|
|
rm -Rfv vs2008/sdl/VisualC/SDLmain/Release vs2008/sdl/VisualC/SDL/Release vs2008/sdlnet/VisualC/Release
|
|
rm -Rfv vs2008/Debug vs2008/Release
|
|
rm -Rfv autom4te.cache
|
|
rm -Rfv build-flatpak
|
|
rm -Rfv .flatpak-builder
|
|
rm -Rfv myrepo
|
|
|