GEMC  1.8
Geant4 Monte-Carlo Framework
SConstruct
Go to the documentation of this file.
1 import os
2 from util import scanFiles
3 env = Environment(ENV=os.environ)
4 
5 pdf = env.PDF(target = 'gemc_book.pdf', source = 'gemc_book.tex')
6 #html = env.Command('gemc_book.html', 'gemc_book.tex', "go_htlatex $SOURCE");
7 
8 #Depends(html, pdf)
9 
10 cleans = scanFiles('.', accept=["gemc_book*", "*.aux"], reject=[".tex"])
11 #rint "to remove: ", cleans;
12 
13 Clean('gemc_book.html', cleans)