This commit is contained in:
Samuel Oberhofer
2022-06-18 17:06:55 +02:00
parent 73b9c1a8af
commit 9aeeed76f6
4 changed files with 4 additions and 4 deletions
+2 -1
View File
@@ -4,7 +4,7 @@ BINARY = main
# Name of the binary for Release
FINAL = prototyp
# Object files
OBJS = pbEntry.o hashTable.o main.o
OBJS = pbEntry.o hashTableDynamic.o main.o
# Compiler flags
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
# Linker flags
@@ -18,6 +18,7 @@ all: binary
final : ${OBJS}
${COMPILER} ${LFLAGS} -o ${FINAL} ${OBJS}
rm ${OBJS}
binary : ${OBJS}
${COMPILER} ${LFLAGS} -o ${BINARY} ${OBJS}