summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 950d1a3..e757777 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,16 @@
EXTRA_CFLAGS =
+EXTRA_LIBS =
ifdef pthread
EXTRA_CFLAGS = -DMULTITHREADED -pthread
endif
+ifdef numa
+ EXTRA_CFLAGS = -DNUMA
+ EXTRA_LIBS = -lnuma
+endif
+
mbw: mbw.c
- gcc -Wall -Wextra -pedantic -O2 ${EXTRA_CFLAGS} -o mbw mbw.c
+ gcc -Wall -Wextra -pedantic -O2 ${EXTRA_CFLAGS} -o mbw mbw.c ${EXTRA_LIBS}
.PHONY: clean
clean: