aboutsummaryrefslogtreecommitdiffstats
path: root/minilibx-bsd/Makefile.gen
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-15 16:19:44 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-15 16:19:44 +0200
commit46687fa2cef63e99a0ded077d88c3b19b20cc1ca (patch)
tree020590d4319b4bd0217cdf97750f3a8338d3069e /minilibx-bsd/Makefile.gen
parentAdded line to gitignore (diff)
download42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.gz
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.bz2
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.xz
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.tar.zst
42-cub3d-46687fa2cef63e99a0ded077d88c3b19b20cc1ca.zip
Now BSD compliant
Diffstat (limited to 'minilibx-bsd/Makefile.gen')
-rw-r--r--minilibx-bsd/Makefile.gen47
1 files changed, 47 insertions, 0 deletions
diff --git a/minilibx-bsd/Makefile.gen b/minilibx-bsd/Makefile.gen
new file mode 100644
index 0000000..70304d3
--- /dev/null
+++ b/minilibx-bsd/Makefile.gen
@@ -0,0 +1,47 @@
+INC=/usr/local/include
+HT=FreeBSD
+DOCP=do_cp
+##
+## Makefile for MiniLibX in /home/boulon/work/c/raytraceur/minilibx
+##
+## Made by Olivier Crouzet
+## Login <ol@epitech.net>
+##
+## Started on Tue Oct 5 15:56:43 2004 Olivier Crouzet
+## Last update Tue May 15 15:41:20 2007 Olivier Crouzet
+##
+
+## Please use configure script
+
+
+
+CC = clang
+
+NAME = libmlx.a
+
+SRC = mlx_init.c mlx_new_window.c mlx_pixel_put.c mlx_loop.c \
+ mlx_mouse_hook.c mlx_key_hook.c mlx_expose_hook.c mlx_loop_hook.c \
+ mlx_int_anti_resize_win.c mlx_int_do_nothing.c \
+ mlx_int_wait_first_expose.c mlx_int_get_visual.c \
+ mlx_flush_event.c mlx_string_put.c \
+ mlx_new_image.c mlx_get_data_addr.c \
+ mlx_put_image_to_window.c mlx_get_color_value.c mlx_clear_window.c \
+ mlx_xpm.c mlx_int_str_to_wordtab.c mlx_destroy_window.c \
+ mlx_int_param_event.c mlx_int_set_win_event_mask.c mlx_hook.c \
+ mlx_rgb.c mlx_destroy_image.c
+
+OBJ =$(SRC:.c=.o)
+CFLAGS = -O3 -I$(INC)
+
+all : $(NAME) $(DOCP)
+
+$(NAME) : $(OBJ)
+ ar -r $(NAME) $(OBJ)
+ ranlib $(NAME)
+
+do_cp :
+ cp $(NAME) libmlx_$(HT).a
+
+
+clean :
+ rm -f $(OBJ) $(NAME) *~ core *.core