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