File: clean_cmake_files.sh

package info (click to toggle)
log4cplus 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,536 kB
  • sloc: sh: 10,603; cpp: 9,253; ansic: 706; makefile: 251
file content (18 lines) | stat: -rwxr-xr-x 249 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -x

for f in CMakeFiles \
    debug \
    log4cplus.dir \
    loggingserver.dir \
    minsizerel \
    release \
    relwithdebinfo \
    ZERO_CHECK.dir \
    cmake_install.cmake \
    CMakeCache.txt \
    ;
do
    rm -rf "${f}"
done