File: clean_sources.sh

package info (click to toggle)
snort 2.9.7.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 55,000 kB
  • ctags: 38,464
  • sloc: ansic: 266,667; sh: 12,508; makefile: 2,908; yacc: 497; perl: 496; lex: 261; sed: 14
file content (11 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# Clean the sources
make distclean
# TODO: Consider adjusting SUBDIRS, so we do not remove the 
# doc dir
# Make sure the sources are removed (in case somebody removed the
# main Makefile but did not distclean)
(cd src &&  test -e Makefile && make distclean)

exit 0