From 46687fa2cef63e99a0ded077d88c3b19b20cc1ca Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Wed, 15 Apr 2020 16:19:44 +0200 Subject: Now BSD compliant --- minilibx-bsd/test/Makefile.gen | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 minilibx-bsd/test/Makefile.gen (limited to 'minilibx-bsd/test/Makefile.gen') diff --git a/minilibx-bsd/test/Makefile.gen b/minilibx-bsd/test/Makefile.gen new file mode 100644 index 0000000..233a5fa --- /dev/null +++ b/minilibx-bsd/test/Makefile.gen @@ -0,0 +1,26 @@ +INC=/usr/local/include +HT=FreeBSD +DOCP=do_cp + + + +INCLIB=$(INC)/../lib + +CC=clang + +CFLAGS= -I$(INC) -O3 -I.. + +NAME= mlx-test +SRC = main.c +OBJ = $(SRC:.c=.o) + +all :$(NAME) + +$(NAME) :$(OBJ) + $(CC) -o $(NAME) $(OBJ) -L.. -lmlx -L$(INCLIB) -lXext -lX11 -lm + +clean : + rm -f $(NAME) $(OBJ) *~ core *.core + + +re : clean all -- cgit v1.2.3