From d078b0d8366ad6d27a4ebe2aa801d2152d8bdb2a Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Tue, 6 Sep 2016 17:47:10 +0530 Subject: [PATCH] module_api/Makefile: Update as per newer hipgenisa.sh Change-Id: I479c74eae00d7521434f2740ce5930e326ea05cf [ROCm/hip-tests commit: 2145e2ba61b69ec0b275d01df4d3fb6636050f42] --- projects/hip-tests/samples/0_Intro/module_api/Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/projects/hip-tests/samples/0_Intro/module_api/Makefile b/projects/hip-tests/samples/0_Intro/module_api/Makefile index 81e876ddbf..f2c0ce555a 100644 --- a/projects/hip-tests/samples/0_Intro/module_api/Makefile +++ b/projects/hip-tests/samples/0_Intro/module_api/Makefile @@ -5,17 +5,13 @@ endif HIPCC=$(HIP_PATH)/bin/hipcc HIP_PLATFORM=$(shell $(HIP_PATH)/bin/hipconfig --compiler) -ifeq (${HIP_PLATFORM}, hcc) - GENCO_FLAGS=--target-isa=fiji -endif - all: vcpy_kernel.code runKernel.hip.out runKernel.hip.out: runKernel.cpp $(HIPCC) $(HIPCC_FLAGS) $< -o $@ vcpy_kernel.code: vcpy_kernel.cpp - $(HIPCC) --genco $(GENCO_FLAGS) $< -o $@ + $(HIPCC) --genco $(GENCO_FLAGS) $^ -o $@ clean: rm -f *.code *.out