File: nobuild.py

package info (click to toggle)
glmark2 2023.01%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,380 kB
  • sloc: cpp: 20,680; python: 13,052; ansic: 8,595; java: 1,246; xml: 383; makefile: 41; sh: 39
file content (11 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env python
# encoding: utf-8
# WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file

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