File: cleanCMake.sh

package info (click to toggle)
globalplatform 2.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,500 kB
  • sloc: ansic: 13,417; xml: 244; sh: 87; java: 28; makefile: 10
file content (17 lines) | stat: -rwxr-xr-x 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
CMD1="rm -f CMakeDoxy* && rm -f CTest* && rm -f install_manifest.txt && rm -f CMakeCache.txt && rm -f cmake_install.cmake"
CMD2="rm -rfd CMakeFiles && rm -rf _CPack_Packages && rm -f CPack* && rm -rfd src/CMakeFiles"
$(${CMD1})
$(${CMD2})
cd gpshell 
$(${CMD1})
$(${CMD2})
cd ..
cd globalplatform
$(${CMD1})
$(${CMD2})
cd ..
cd gppcscconnectionplugin
$(${CMD1})
$(${CMD2})
cd ..