Dosyalar
rocm-systems/samples/1_Utils/hipInfo/Makefile
T
2016-03-29 16:02:09 +08:00

17 satır
193 B
Makefile

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