Files
rocm-systems/projects/hip/samples/1_Utils/hipDispatchLatency/Makefile
T
streamhsa 1d55744e91 change makefile for samples
[ROCm/hip commit: d0f0bf5c8e]
2016-03-29 16:02:09 +08:00

16 lines
244 B
Makefile

HIP_PATH=../../..
HIPCC=$(HIP_PATH)/bin/hipcc
EXE=hipDispatchLatency
all: install
$(EXE): hipDispatchLatency.cpp
$(HIPCC) hipDispatchLatency.cpp ResultDatabase.cpp -o $@
install: $(EXE)
cp $(EXE) $(HIP_PATH)/bin
clean:
rm -f *.o $(EXE)