如何在WINAVR上加入多個C文件進行編譯
還要修改Makefile.
這是因為WINAVR的編譯過程是由Makefile控制的。
如果我們要在再編譯一個kevinchin.c文件。
只要在Makefile中找到如下的語句:
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c
我們把kevinchin.c加到$(TARGET).c后順就可以了。
注意,兩個C文件之間用空格隔開。如下:
# List C source files here. (C dependencies are automatically generated.)
SRC = $(TARGET).c hc595.c
評論