'make' does not recompile when source file has been edited

前端 未结 3 542
栀梦
栀梦 2021-01-19 13:31

I\'m writing a little implementation of Conway\'s Game of Life in C. The source code is split in three files: main.c and functions.c/function

相关标签:
3条回答
  • 2021-01-19 14:18

    If you're using GCC (well, you are), then it can be solved generically by passing -MD option to the compiler, GCC will generate a file containing Make dependencies on included headers:

    CC = gcc
    OBJECTS = main.o functions.o
    
    %.o : %.c
        $(CC) -MD -c $<
    
    -include $(OBJECTS:.o=.d)
    

    Some headers-related information can also be found in this question.

    0 讨论(0)
  • 2021-01-19 14:29

    Because you haven't told it that recompilation depends on functions.h.

    Try adding this to your Makefile:

    %.o : functions.h
    

    Alternatively, modify your existing rule to be:

    %.o : %.c functions.h
        $(CC) -c $< -o $@
    
    0 讨论(0)
  • 2021-01-19 14:33

    You've told make that .o files don't depend on .h files, so it doesn't recompile anything when a header changes.

    Getting it to work right is hard (you need to generate dependencies for each .c file), but an easy way is just to define HEADERS which contains all your header files and make each .o file depend on all your headers.

    0 讨论(0)
提交回复
热议问题