Adding DS_Store to git ingore
This commit is contained in:
parent
0a390934d6
commit
0769ed9295
3 changed files with 7 additions and 4 deletions
2
.clangd
2
.clangd
|
|
@ -1,5 +1,5 @@
|
||||||
CompilerFlags:
|
CompilerFlags:
|
||||||
Add:
|
Add:
|
||||||
- "-xc"
|
- "-xc"
|
||||||
- "-I/Users/raphael/Documents/42_cursus/circle4/Cub3D//sources"
|
- "-I/Users/raphael/Documents/42_cursus/circle4/Cub3D/includes/libft"
|
||||||
- "-I/Users/raphael/Documents/42_cursus/circle4/Cub3D/includes"
|
- "-I/Users/raphael/Documents/42_cursus/circle4/Cub3D/includes"
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -45,6 +45,7 @@ to_do*
|
||||||
*.pdb
|
*.pdb
|
||||||
|
|
||||||
# Kernel Module Compile Results
|
# Kernel Module Compile Results
|
||||||
|
.DS_Store
|
||||||
*.mod*
|
*.mod*
|
||||||
*.cmd
|
*.cmd
|
||||||
.tmp_versions/
|
.tmp_versions/
|
||||||
|
|
|
||||||
8
Makefile
8
Makefile
|
|
@ -6,7 +6,7 @@
|
||||||
# By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ #
|
# By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ #
|
||||||
# +#+#+#+#+#+ +#+ #
|
# +#+#+#+#+#+ +#+ #
|
||||||
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
|
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
|
||||||
# Updated: 2024/10/31 23:54:04 by bgoulard ### ########.fr #
|
# Updated: 2024/11/01 12:17:05 by rparodi ### ########.fr #
|
||||||
# #
|
# #
|
||||||
# **************************************************************************** #
|
# **************************************************************************** #
|
||||||
|
|
||||||
|
|
@ -84,9 +84,11 @@ build/libft.a:
|
||||||
build/libft_personal.a:
|
build/libft_personal.a:
|
||||||
@make --no-print-directory -C ./libft_personal
|
@make --no-print-directory -C ./libft_personal
|
||||||
|
|
||||||
|
build/mlx.a:
|
||||||
|
@./minilibx-linux/configure
|
||||||
|
|
||||||
# Dependences for all
|
# Dependences for all
|
||||||
$(NAME): $(OBJ) build/libft.a build/libft_personal.a
|
$(NAME): $(OBJ) build/libft.a build/libft_personal.a build/mlx.a
|
||||||
@make --no-print-directory -C ./libft lib
|
|
||||||
@mkdir -p $(OBJDIRNAME)
|
@mkdir -p $(OBJDIRNAME)
|
||||||
@printf '$(GREY) Creating $(END)$(GREEN)$(OBJDIRNAME)$(END)\n'
|
@printf '$(GREY) Creating $(END)$(GREEN)$(OBJDIRNAME)$(END)\n'
|
||||||
@cc $(CFLAGS) ./build/libft.a -o $(NAME) $(OBJ) $(LDFLAGS)
|
@cc $(CFLAGS) ./build/libft.a -o $(NAME) $(OBJ) $(LDFLAGS)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue