style(make): not compiling but assembling is more correct

- Yes, missing an actually emoji (go add it to unicode)
This commit is contained in:
Raphael 2025-12-12 00:11:55 +01:00
parent 4bb1258298
commit 94f583ebe7
No known key found for this signature in database

View file

@ -6,7 +6,7 @@
# By: rparodi <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
# Updated: 2025/12/11 23:18:29 by rparodi ### ########.fr #
# Updated: 2025/12/11 23:58:57 by rparodi ### ########.fr #
# #
# **************************************************************************** #
@ -78,7 +78,7 @@ $(NAME): $(OBJ)
$(OBJDIRNAME)/%.o: %.s
@mkdir -p $(dir $@)
@printf '$(GREY) Compiling $(END)$(GREEN)$<$(END)\n'
@printf '$(GREY) Assembling $(END)$(GREEN)$<$(END)\n'
@$(AS) $(ASFLAGS) -o $@ $<
test: header $(NAME) test_compile footer