diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-02 00:56:03 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-02 00:56:03 +0100 |
commit | d812df80d26f879d4d49ec45453866574e995839 (patch) | |
tree | d6c143d0356d72a4274dc125e354b4e51acf0f4b /Makefile | |
parent | in progress (diff) | |
download | 42-cub3d-d812df80d26f879d4d49ec45453866574e995839.tar.gz 42-cub3d-d812df80d26f879d4d49ec45453866574e995839.tar.bz2 42-cub3d-d812df80d26f879d4d49ec45453866574e995839.tar.xz 42-cub3d-d812df80d26f879d4d49ec45453866574e995839.tar.zst 42-cub3d-d812df80d26f879d4d49ec45453866574e995839.zip |
trying to thread
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,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 -lm -lbsd + ${CC} ${CFLAGS} -o $@ ${OBJS} -L${LFT_DIR} -lft -lX11 -lXext -lmlx -lm -lbsd -lpthread endif #--------------------------------------------------------------------------------------------------# all: ${NAME} |