diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-01 15:27:02 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-06-01 15:27:02 +0200 |
commit | a27736998b1326f8bdf927b6f856d0592269a895 (patch) | |
tree | 8954294a3d94995bf47fc49a33a91e9b0d04df6d /BFS/Makefile | |
parent | a169ff00414aec27055862bd971a85072b3babe8 (diff) |
BFS: update dfatool port; add eval scripts
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 |