aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile3
-rw-r--r--src/ft_drawmap.c7
2 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4814d68..ecf5f4f 100644
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,7 @@ SRCS_NAME += ft_check_empty_line.c
SRCS_NAME += ft_free_words.c
SRCS_NAME += ft_map_error.c
SRCS_NAME += ft_init_winlx.c
+SRCS_NAME += ft_drawmap.c
SRCS_NAME += ft_print_list.c
#------------------------------------------------------------------------------#
SRCS = $(addprefix ${SRCS_DIR},${SRCS_NAME})
@@ -82,7 +83,7 @@ ifeq (${OS}, Darwin)
${CC} ${CFLAGS} -o $@ ${OBJS} -L${LFT_DIR} -L${MLX_DIR} -lft -lmlx -lm \
-framework OpenGL -framework AppKit
else
- ${CC} ${CFLAGS} -o $@ ${OBJS} -L${LFT_DIR} -lft -lX11 -lXext -lmlx
+ ${CC} ${CFLAGS} -o $@ ${OBJS} -L${LFT_DIR} -lft -lX11 -lXext -lmlx -lm
endif
#------------------------------------------------------------------------------#
all:
diff --git a/src/ft_drawmap.c b/src/ft_drawmap.c
new file mode 100644
index 0000000..f944b11
--- /dev/null
+++ b/src/ft_drawmap.c
@@ -0,0 +1,7 @@
+#include <libft.h>
+
+int
+ft_drawmap(void)
+{
+ return (0);
+}