blob: e5e2ce0df941194e9e0284de1f8e6ba1dfec7184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
INC=/usr/include
HT=Linux
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)
DESTDIR = /usr/local
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
install:
mkdir -p $(DESTDIR)/lib && cp $(NAME) $(DESTDIR)/lib
mkdir -p $(DESTDIR)/lib/pkgconfig && cp mlx.pc $(DESTDIR)/lib/pkgconfig
mkdir -p $(DESTDIR)/include && cp mlx.h $(DESTDIR)/include
mkdir -p $(DESTDIR)/man/man3 && cp man/man3/*.3 $(DESTDIR)/man/man3
|