aboutsummaryrefslogtreecommitdiffstats
path: root/minilibx-bsd/test/Makefile.gen
diff options
context:
space:
mode:
Diffstat (limited to 'minilibx-bsd/test/Makefile.gen')
-rw-r--r--minilibx-bsd/test/Makefile.gen26
1 files changed, 26 insertions, 0 deletions
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