在WINAVR中,想进行多个C文件的编译不是只将.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