Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #73 from mli/master
Browse files Browse the repository at this point in the history
fix gpu code dependencies
  • Loading branch information
mli committed Sep 14, 2015
2 parents 91d420d + 090918c commit ef9a10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ build/%.o: src/%.cc

build/%_gpu.o: src/%.cu
@mkdir -p $(@D)
$(CXX) $(CFLAGS) -MM -MT build/$*_gpu.o $< >build/$*_gpu.d
$(NVCC) $(NVCCFLAGS) -Xcompiler "$(CFLAGS)" -M build/$*_gpu.o $< >build/$*_gpu.d
$(NVCC) -c -o $@ $(NVCCFLAGS) -Xcompiler "$(CFLAGS)" $<

lib/libmxnet.a: $(ALL_DEP)
Expand Down

0 comments on commit ef9a10a

Please sign in to comment.