diff options
Diffstat (limited to 'BFS/Makefile')
-rw-r--r-- | BFS/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BFS/Makefile b/BFS/Makefile index 2e1dcfe..a4ea69d 100644 --- a/BFS/Makefile +++ b/BFS/Makefile @@ -5,8 +5,6 @@ COMMON_INCLUDES := support HOST_SOURCES := $(wildcard host/*.c) DPU_SOURCES := $(wildcard dpu/*.c) -.PHONY: all clean test - COMMON_FLAGS := -Wall -Wextra -g -I${COMMON_INCLUDES} HOST_FLAGS := ${COMMON_FLAGS} -std=c11 -O3 `dpu-pkg-config --cflags --libs dpu` -DNR_TASKLETS=${NR_TASKLETS} -DNR_DPUS=${NR_DPUS} DPU_FLAGS := ${COMMON_FLAGS} -O2 -DNR_TASKLETS=${NR_TASKLETS} @@ -33,3 +31,5 @@ clean: test: all bin/host_code + +.PHONY: all clean test |