source: trunk/doc/awk/script.sh@ 14

Last change on this file since 14 was 4, checked in by Pavel Demin, 16 years ago

first commit

  • Property svn:executable set to *
File size: 354 bytes
Line 
1#! /bin/sh
2
3if [ $# -ne 1 ]
4then
5 echo " Usage: $0 output_file"
6 echo " output_file - output file in HTML format."
7 exit
8fi
9
10awk -f branches_gen.awk \
11 ../../test/ExRootLHEFConverter.cpp \
12 ../../test/ExRootSTDHEPConverter.cpp \
13 ../../test/ExRootLHCOlympicsConverter.cpp > $1
14awk -f classes_gen.awk \
15 ../../ExRootAnalysis/ExRootClasses.h >> $1
16
Note: See TracBrowser for help on using the repository browser.