Files
TDT4200/exercise6/Makefile
2025-10-25 15:36:24 +02:00

10 lines
192 B
Makefile

PATH+=:/usr/local/cuda/bin
all: mandel_c mandel
mandel:
nvcc -o mandel mandel.cu -O3 -lm
mandel_c:
gcc -o mandel_c mandel_c.c -O3 -Wall -std=c99 -lm
clean:
-rm -f mandel_c mandel