summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/noop/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/noop/SConscript')
-rw-r--r--src/gallium/drivers/noop/SConscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gallium/drivers/noop/SConscript b/src/gallium/drivers/noop/SConscript
new file mode 100644
index 0000000000..a4d0dcaf27
--- /dev/null
+++ b/src/gallium/drivers/noop/SConscript
@@ -0,0 +1,15 @@
+#######################################################################
+# SConscript for noop convenience library
+
+Import('*')
+
+env = env.Clone()
+
+noop = env.ConvenienceLibrary(
+ target = 'noop',
+ source = [
+ 'noop_pipe.c',
+ 'noop_state.c'
+ ]
+ ) + extra
+Export('noop')