aboutsummaryrefslogtreecommitdiffstats
path: root/waflib/Tools/nobuild.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-04-02 20:47:18 +0200
committerDavid Robillard <d@drobilla.net>2020-04-02 20:47:18 +0200
commitac77923e2233547122343c9dcdb89be81bde896b (patch)
tree45d8eb6272d38e823cc47f215bf31ea6f1238b72 /waflib/Tools/nobuild.py
parentffa9c8240e4d904da2154466e811302ae313034d (diff)
downloadpugl-ac77923e2233547122343c9dcdb89be81bde896b.tar.gz
pugl-ac77923e2233547122343c9dcdb89be81bde896b.tar.bz2
pugl-ac77923e2233547122343c9dcdb89be81bde896b.zip
Remove waf in preparation for switching to a submodule
Unfortunately this leaves a commit with no build system at all in the history, but some systems do not handle replacing a directory with a submodule in the same commit properly.
Diffstat (limited to 'waflib/Tools/nobuild.py')
-rw-r--r--waflib/Tools/nobuild.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/waflib/Tools/nobuild.py b/waflib/Tools/nobuild.py
deleted file mode 100644
index 2e4b055..0000000
--- a/waflib/Tools/nobuild.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /usr/bin/env python
-# encoding: utf-8
-# Thomas Nagy, 2015 (ita)
-
-"""
-Override the build commands to write empty files.
-This is useful for profiling and evaluating the Python overhead.
-
-To use::
-
- def build(bld):
- ...
- bld.load('nobuild')
-
-"""
-
-from waflib import Task
-def build(bld):
- def run(self):
- for x in self.outputs:
- x.write('')
- for (name, cls) in Task.classes.items():
- cls.run = run
-