fix dots in makelfile
This commit is contained in:
parent
3b9498e230
commit
a84e797e89
6
Makefile
6
Makefile
@ -52,18 +52,18 @@ $(LIBFT):
|
||||
@$(MAKE) -sC libft
|
||||
|
||||
$(NAME): $(OBJECTS) $(OBJECTS_PUSH_SWAP)
|
||||
@echo "Linking the object files in the executable."
|
||||
@echo "Linking the object files in the push_swap executable"
|
||||
@$(CC) $(CFLAGS) $(OBJECTS) $(OBJECTS_PUSH_SWAP) $(LDFLAGS) $(LDLIBS) -o $(NAME)
|
||||
|
||||
checker: $(OBJECTS) $(OBJECTS_CHECKER)
|
||||
@echo "Linking the object files in the executable."
|
||||
@echo "Linking the object files in the checker executable"
|
||||
@$(CC) $(CFLAGS) $(OBJECTS) $(OBJECTS_CHECKER) $(LDFLAGS) $(LDLIBS) -o checker
|
||||
|
||||
$(OBJ_PATH):
|
||||
@mkdir -p $@
|
||||
|
||||
$(OBJ_PATH)/%.o: %.c $(LIBFT) | $(OBJ_PATH)
|
||||
@echo "Compiling $@."
|
||||
@echo "Compiling $@"
|
||||
@$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
||||
|
||||
clean:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user