blob: 81f1910bfa88d4cb54d8196a0be4cc5d5ffdbab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.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)
$(RM) $(IOE_SPI_USART_OBJ)
|