X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senfscons%2FSENFSCons.py;h=7308c0e75c370099910db6540cc30d5811022c4f;hb=0fff17bd2bcdbb1e91e216bf6e1bebc414713548;hp=bed67e0bf7f342438669f0bc469a698e4055cc7b;hpb=9f894848419a22a6a50e6c5ce253f436d164dcd3;p=senf.git diff --git a/senfscons/SENFSCons.py b/senfscons/SENFSCons.py index bed67e0..7308c0e 100644 --- a/senfscons/SENFSCons.py +++ b/senfscons/SENFSCons.py @@ -113,8 +113,7 @@ def GlobSources(exclude=[]): def StandardTargets(env): all = env.Alias('all') - env.Clean(all, [ '.sconsign', '.sconf_temp', 'config.log', 'ChangeLog.bak', '.clean' - ] + glob.glob("*~")) + env.Clean(all, [ '.sconsign', '.sconf_temp', 'config.log' ]) env.Depends(all, '.') def GlobalTargets(env): @@ -151,14 +150,7 @@ def Objects(env, sources, testSources = None, LIBS = []): return objects -def DoxyGlob(exclude=[]): - sources = [ f - for ext in ("cci", "ct", "cti", "h", "hh", "ih", "mmc", "dox") - for f in glob.glob("*."+ext) - if f not in exclude ] - return sources - -def Doxygen(env, doxyfile="Doxyfile", extra_sources = []): +def Doxygen(env, doxyfile = "Doxyfile", extra_sources = []): docs = env.Doxygen(doxyfile) # The last target is the (optional) tagfile if os.path.basename(str(docs[-1])) != '.stamp':