aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Bakita <jbakita@cs.unc.edu>2024-12-19 14:59:15 -0500
committerJoshua Bakita <jbakita@cs.unc.edu>2024-12-19 15:04:26 -0500
commit32f89528085f3cdb183e50461ffcd109d1f9a58d (patch)
tree2583fc3e6b588c5aae06ae43376f5c444d891a29 /Makefile
parentd052c2df34ab41ba285f70965663e5a0832f6ac9 (diff)
Remove unused variables from Makefile
Make automatically provides CXX and CC, and these manual definitions were being ignored. Also fix a missing space in one of the messages from the tests.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d9b9f6..5af440e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,4 @@
1CC = gcc 1# Note that CXX and CC are predefined as g++ and cc (respectively) by Make
2CXX = g++
3NVCC ?= nvcc 2NVCC ?= nvcc
4# -fPIC is needed in all cases, as we may be linked into another shared library 3# -fPIC is needed in all cases, as we may be linked into another shared library
5CFLAGS = -fPIC 4CFLAGS = -fPIC