Makefile with hashtab
This commit is contained in:
parent
03250988f9
commit
6880a18ff7
2 changed files with 10 additions and 2 deletions
|
|
@ -204,7 +204,14 @@ sys/open_access.c\
|
||||||
sys/open_new.c\
|
sys/open_new.c\
|
||||||
time/ft_mytime_free.c\
|
time/ft_mytime_free.c\
|
||||||
time/ft_mytime_get.c\
|
time/ft_mytime_get.c\
|
||||||
time/ft_time_isrecent.c
|
time/ft_time_isrecent.c\
|
||||||
|
htb/ft_hash_string.c\
|
||||||
|
htb/hashtab_init.c\
|
||||||
|
htb/hashtab_insert.c\
|
||||||
|
htb/hashtab_lookup.c\
|
||||||
|
htb/hashtab_remove.c\
|
||||||
|
htb/hashtab_destroy.c\
|
||||||
|
htb/hashtab_print.c\
|
||||||
|
|
||||||
SRCS = $(addprefix $(SRC_DIR), $(SRC_BASE))
|
SRCS = $(addprefix $(SRC_DIR), $(SRC_BASE))
|
||||||
OBJS = $(addprefix $(OBJ_DIR), $(SRC_BASE:.c=.o))
|
OBJS = $(addprefix $(OBJ_DIR), $(SRC_BASE:.c=.o))
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2016/11/07 13:49:04 by jhalford #+# #+# */
|
/* Created: 2016/11/07 13:49:04 by jhalford #+# #+# */
|
||||||
/* Updated: 2017/04/03 16:51:25 by jhalford ### ########.fr */
|
/* Updated: 2017/05/16 17:47:18 by ariard ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
|
@ -28,6 +28,7 @@
|
||||||
# include "lst.h"
|
# include "lst.h"
|
||||||
# include "dlst.h"
|
# include "dlst.h"
|
||||||
# include "btree.h"
|
# include "btree.h"
|
||||||
|
# include "hashtab.h"
|
||||||
|
|
||||||
# include "str.h"
|
# include "str.h"
|
||||||
# include "sstr.h"
|
# include "sstr.h"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue