Files
rocm-systems/projects/hip-tests/samples/1_Utils/hipBusBandwidth/Makefile
T
Ben Sander a776b6c7c3 Enable -O3, style points on array size
[ROCm/hip-tests commit: f12a1e9581]
2016-02-13 03:17:42 -06:00

18 lines
263 B
Makefile

HIP_PATH?=$(shell hipconfig -p)
HIPCC=$(HIP_PATH)/bin/hipcc
EXE=hipBusBandwidth
CXXFLAGS = -O3 -g
all: install
$(EXE): hipBusBandwidth.cpp ResultDatabase.cpp
$(HIPCC) $(CXXFLAGS) $^ -o $@
install: $(EXE)
cp $(EXE) $(HIP_PATH)/bin
clean:
rm -f *.o $(EXE)