You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/majel/Makefile

11 lines
212 B

CCFLAGS = -std=c++11 -I/work/paddle
CC = nvcc
all : place_test
place.o : place.h place.cu
$(CC) $(CCFLAGS) -c place.cu -o $@
place_test : place.o place_test.cu
$(CC) $(CCFLAGS) -lgtest -lgtest_main $^ -o $@