Makefile with hashtab

This commit is contained in:
Antoine Riard 2017-05-16 21:41:39 +02:00
parent bdefb3c7a5
commit 584b975ae4
2 changed files with 10 additions and 2 deletions

View file

@ -204,7 +204,14 @@ sys/open_access.c\
sys/open_new.c\
time/ft_mytime_free.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))
OBJS = $(addprefix $(OBJ_DIR), $(SRC_BASE:.c=.o))

View file

@ -6,7 +6,7 @@
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 "dlst.h"
# include "btree.h"
# include "hashtab.h"
# include "str.h"
# include "sstr.h"