File: buffe-src

package info (click to toggle)
derivations 0.53.20120414-1.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,208 kB
  • ctags: 486
  • sloc: cpp: 1,634; perl: 600; makefile: 153; sh: 116
file content (16 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/bash -e

# (See the notes in `./buff-expand'.)
#
# This script is successfully called from the main source directory as
# `helper/buffe-src'.  It buffs and expands all the source files, except
# that it only buffs the two Makefiles `Makefile' and `debian/rules'.

BUFFE='helper/buff-expand -M'
for F in `find .` ; do
  if [ -f $F ] ; then
    $BUFFE $F
    echo   $F
  fi
done