From 0079a375a58b288caacc2721f5a34b8f1233e7d1 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Fri, 9 May 2014 15:55:47 +1000 Subject: nvc0: allow for easier modification of compiler library routines Signed-off-by: Ben Skeggs Reviewed-by: Ilia Mirkin --- src/gallium/drivers/nouveau/codegen/lib/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/gallium/drivers/nouveau/codegen/lib/Makefile (limited to 'src/gallium/drivers/nouveau/codegen/lib/Makefile') diff --git a/src/gallium/drivers/nouveau/codegen/lib/Makefile b/src/gallium/drivers/nouveau/codegen/lib/Makefile new file mode 100644 index 00000000000..28a41a3f41e --- /dev/null +++ b/src/gallium/drivers/nouveau/codegen/lib/Makefile @@ -0,0 +1,10 @@ +ENVYAS ?= envyas + +all: gf100.asm.h gk104.asm.h gk110.asm.h + +gf100.asm.h: %.asm.h: %.asm + $(ENVYAS) -a -W -mnvc0 -Vnvc0 $< -o $@ +gk104.asm.h: %.asm.h: %.asm + $(ENVYAS) -a -W -mnvc0 -Vnve4 $< -o $@ +gk110.asm.h: %.asm.h: %.asm + $(ENVYAS) -a -W -mgk110 $< -o $@ -- cgit v1.2.3