File: clean.sh

package info (click to toggle)
httraqt 1.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 2,780 kB
  • sloc: cpp: 7,970; sh: 177; makefile: 13
file content (12 lines) | stat: -rwxr-xr-x 249 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

#make clean
rm -if $(find . -name "*.orig")
rm -if $(find . -name "*~")
rm -if $(find ./sources/ -name "*.cmake")
rm -if $(find . -name "Makefile")
rm -ifr $(find . -name "CMakeFiles")

rm ./build/* -rf
rm ./*.cmake
rm ./CMakeCache.txt