在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
阅读(2536) | 评论(0) | 转发(0) |