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
|
# Name of the binary for Release
|
||||||
FINAL = prototyp
|
FINAL = prototyp
|
||||||
# Object files
|
# Object files
|
||||||
OBJS = Ware.o hashTable.o main.o
|
OBJS = Ware.o hashTableChaining.o main.o
|
||||||
# Compiler flags
|
# Compiler flags
|
||||||
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
|
CFLAGS = -Werror -Wall -std=c++17 -fsanitize=address,undefined -g
|
||||||
# Linker flags
|
# Linker flags
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#include "hashTable.h"
|
#include "hashTableChaining.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
HashTable::HashTable() {
|
HashTable::HashTable() {
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#include "Ware.h"
|
#include "Ware.h"
|
||||||
#include "hashTable.h"
|
#include "hashTableChaining.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue