diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..846c644 --- /dev/null +++ b/makefile @@ -0,0 +1,15 @@ +.PHONY: all help clean + +include files.mk + +all: + $(error This is not library, please include "files.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 + +clean: + $(RM) $(IOE_SPI_OBJ) + $(RM) $(IOE_SPI_USI_OBJ) |