[Intel-gfx] [PATCH 3/8] build: Fix automake 1.13 warnings

Damien Lespiau damien.lespiau at intel.com
Fri Jul 19 18:49:43 CEST 2013


warning: deprecated feature: target 'sr' overrides 'sr$(EXEEXT)'

Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
---
 debugger/system_routine/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debugger/system_routine/Makefile.am b/debugger/system_routine/Makefile.am
index 2576e2a..03f0f0f 100644
--- a/debugger/system_routine/Makefile.am
+++ b/debugger/system_routine/Makefile.am
@@ -21,7 +21,7 @@ sr.c: sr.asm
 	$(GEN4ASM) $(GEN4ASM_FLAGS) sr.asm -o $@
 sr.o : sr.c
 	$(CC) -c -o $@ sr.c
-sr : sr.o
+sr$(EXEEXT) : sr.o
 	$(OBJCOPY) -O binary -K gen_eu_bytes sr.o $@
 
 # Test.g4a is the simplest possible system routine we can run on the GPU
@@ -35,7 +35,7 @@ tiny.c: tiny.asm
 	$(GEN4ASM) $(GEN4ASM_FLAGS) tiny.asm -o $@
 tiny.o : tiny.c
 	$(CC) -c -o $@ tiny.c
-tiny : tiny.o
+tiny$(EXEEXT) : tiny.o
 	$(OBJCOPY) -O binary -K gen_eu_bytes tiny.o $@
 
 CLEANFILES = evict.h sr.cpp sr.asm sr.c tiny.cpp tiny.asm tiny.c
-- 
1.8.3.1




More information about the Intel-gfx mailing list