Update Names and Makefile
This commit is contained in:
parent
70cdab95d1
commit
e78b4527b1
|
|
@ -4,7 +4,7 @@ BINARY = main
|
|||
# Name of the binary for Release
|
||||
FINAL = prototyp
|
||||
# Object files
|
||||
OBJS = Ware.o hashTable.o main.o
|
||||
OBJS = Ware.o hashTableChaining.o main.o
|
||||
# Compiler flags
|
||||
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
|
||||
# Linker flags
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#include "hashTable.h"
|
||||
#include "hashTableChaining.h"
|
||||
#include <iostream>
|
||||
|
||||
HashTable::HashTable() {
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
#include "Ware.h"
|
||||
#include "hashTable.h"
|
||||
#include "hashTableChaining.h"
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue