diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-23 14:48:38 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-23 14:48:38 +0100 |
commit | 165f66fe379a9f488a97689aff1c7cb1ec2858f6 (patch) | |
tree | a4584619c358fe47ab080dd580538535b5c7a4a1 /minilibx_opengl_20191021/Makefile | |
parent | Added libft (diff) | |
download | 42-cub3d-165f66fe379a9f488a97689aff1c7cb1ec2858f6.tar.gz 42-cub3d-165f66fe379a9f488a97689aff1c7cb1ec2858f6.tar.bz2 42-cub3d-165f66fe379a9f488a97689aff1c7cb1ec2858f6.tar.xz 42-cub3d-165f66fe379a9f488a97689aff1c7cb1ec2858f6.tar.zst 42-cub3d-165f66fe379a9f488a97689aff1c7cb1ec2858f6.zip |
Deleted libx
Diffstat (limited to 'minilibx_opengl_20191021/Makefile')
-rw-r--r-- | minilibx_opengl_20191021/Makefile | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/minilibx_opengl_20191021/Makefile b/minilibx_opengl_20191021/Makefile deleted file mode 100644 index 2e44836..0000000 --- a/minilibx_opengl_20191021/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# -# - -NOM=libmlx.a -SRC= mlx_shaders.c mlx_new_window.m mlx_init_loop.m mlx_new_image.m mlx_xpm.c mlx_int_str_to_wordtab.c -SRC+= mlx_png.c mlx_mouse.m -OBJ1=$(SRC:.c=.o) -OBJ=$(OBJ1:.m=.o) -CFLAGS+=-O2 - -# add to match string put with X11 in size and position -CFLAGS+= -DSTRINGPUTX11 - -all: $(NOM) - -$(NOM): $(OBJ) - ar -r $(NOM) $(OBJ) - ranlib $(NOM) - -clean: - rm -f $(NOM) $(OBJ) *~ - rm -f mlx_app - -re: clean all |