Use the os's specified c compiler

This commit is contained in:
Timothy Warren 2020-01-10 16:17:42 -05:00
parent a83f5d6032
commit 187359d84f
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ target:
mkdir -p target
target/nbody.c: target
clang -O3 -fomit-frame-pointer -march=native -funroll-loops \
$(cc) -O3 -fomit-frame-pointer -march=native -funroll-loops \
nbody.c -o target/nbody.c -lm
target/nbody-1: