blob: 14aa5900db81935246082f8f2872b2ca71620433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.PHONY: all help clean
IOE_ONLYPATHS = y
include avr-ioe.mk
all:
$(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
clean:
$(RM) $(IOE_OBJ)
$(RM) $(IOE_DEP)
|