summaryrefslogtreecommitdiff
path: root/mlx/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-05-10 10:57:56 +0200
committerDominik Kaiser2024-05-10 10:57:56 +0200
commit302ab0f0d7aea8d034e1f5ff5791f9e9cf84783d (patch)
tree8a84a5856db24780604b49f5303c817a4bb50317 /mlx/Makefile
parente206d293aa947dc56fa8408c42dccaff9cb423c3 (diff)
downloadso_long-302ab0f0d7aea8d034e1f5ff5791f9e9cf84783d.tar.gz
so_long-302ab0f0d7aea8d034e1f5ff5791f9e9cf84783d.zip
Remove old MiniLibX
Diffstat (limited to 'mlx/Makefile')
-rw-r--r--mlx/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/mlx/Makefile b/mlx/Makefile
deleted file mode 100644
index 2e44836..0000000
--- a/mlx/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