blob: 42a2bb80449e7109887f723f2d2c2d6c2f789cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/sh
#
# $Id$
# Run standard scripts.
trap 'rm -f *.pyc __tmp __wt.*; exit 0' 0 1 2 3 13 15
python api_flags.py # Build API flags include file
python api.py # Build API methods
python api_err.py # Build error return API
python stat.py # Build statistics support
python serial.py # Build serial function support
sh ./s_prototypes # Build prototypes include file
sh ./s_readme # Build README file
sh ./s_tags # Build tags files
sh ./s_whitespace # Strip trailing whitespace from source
sh ./s_define # Complain about unused #defines.
|