簡體   English   中英

Makefile…創建一個靜態庫

[英]Makefile… creating a static library

請有人可以幫我解決這個makefile問題嗎?

NAME = libft.a
SRCS = ft_memccpy.c ft_putnbr.c ft_strequ.c ft_strnequ.c \
       ft_memchr.c      ft_putnbr_fd.c  ft_striter.c    ft_strnew.c \
       ft_memcmp.c      ft_putstr.c     ft_striteri.c   ft_strnstr.c \
       ft_atoi.c        ft_memcpy.c     ft_putstr_fd.c  ft_strjoin.c    ft_strrchr.c\
       ft_bzero.c       ft_memdel.c     ft_strcat.c     ft_strlcat.c    ft_strstr.c \
       ft_isalnum.c ft_memmove.c    ft_strchr.c     ft_strlen.c     ft_strsub.c \
       ft_isalpha.c ft_memset.c     ft_strclr.c     ft_strmap.c     ft_strtrim.c \
       ft_isascii.c ft_putchar.c    ft_strcmp.c     ft_strmapi.c    ft_tolower.c \
       ft_isdigit.c ft_putchar_fd.c ft_strcpy.c     ft_strncat.c    ft_toupper.c \
       ft_isprint.c ft_putendl.c    ft_strdel.c     ft_strncmp.c \
       ft_memalloc.c   ft_putendl_fd.c ft_strdup.c     ft_strncpy.c \
OBJ = $(SRCS:.c=.o)
all: $(NAME)
$(NAME):
    gcc -c -Wall -Wextra -Werror $(SRCS)
    ar rc $(NAME) $(OBJ)
    ranlib $(NAME)
clean:
    bin/rm -f *.o
fclean: clean
    bin/rm -f libft.a
re: fclean all

我仍然收到此錯誤:Makefile:14:***遞歸變量`SRCS'引用了自己(最終)。 停止。 我該如何運作?

問題在於,在分配給SRCS變量的值的末尾有一個雜散的行連續轉義SRCS

使看到這條線然后結束

       ft_memalloc.c   ft_putendl_fd.c ft_strdup.c     ft_strncpy.c \

並且認為它也需要在SRCS的值中包括下一行。

只有下一行是OBJ = $(SRCS:.c=.o) ,它引用$(SRCS)並創建make抱怨的循環。

刪除該反斜杠或在這兩行之間添加空白行。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM