diff options
author | Karel Kočí <cynerd@email.cz> | 2015-10-08 20:59:26 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-10-08 20:59:26 +0200 |
commit | acdd758e56e28f22846e7d34d87f5533c8682574 (patch) | |
tree | d8fda0b554e99d6ace98a9300ecb5835b5bf50e0 /makefile | |
parent | 0b534d81ac39eb5bbf2b9a0691519f6f7f0eaa13 (diff) | |
download | avr-ioe-acdd758e56e28f22846e7d34d87f5533c8682574.tar.gz avr-ioe-acdd758e56e28f22846e7d34d87f5533c8682574.tar.bz2 avr-ioe-acdd758e56e28f22846e7d34d87f5533c8682574.zip |
Add implementation of USART and more ground changes
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,16 +1,16 @@ .PHONY: all help clean -include files.mk +IOE_ONLYPATHS = y +include avr-ioe.mk all: - $(error This is not library, please include "files.mk" to your project makefile. For more informations refer to README.md) + $(error This is not library, please include "avr-ioe.mk" to your project makefile. For more informations refer to README.md) help: @echo This makefile only implements these targets: - @echo help - prints this text - @echo clean - removing all object files generated from source files + @echo help - prints this text + @echo clean - removing all object files generated from source files clean: - $(RM) $(IOE_SPI_OBJ) - $(RM) $(IOE_SPI_USI_OBJ) - $(RM) $(IOE_SPI_USART_OBJ) + $(RM) $(IOE_OBJ) + $(RM) $(IOE_DEP) |