aboutsummaryrefslogtreecommitdiff
path: root/files.mk
blob: 3622c8b17f5b6b9e5aa1567e91a90b049d8a707a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
ifndef IOE_PREFIX
	IOE_PREFIX = .
endif

include dht22/files.mk
IOE_SPI_SRC = $(IOE_PREFIX)/src/spi.c
IOE_SPI_USI_SRC = $(IOE_PREFIX)/src/spi_usi.c
IOE_SPI_USART_SRC = $(IOE_PREFIX)/src/spi_usart.c

IOE_SPI_OBJ = $(patsubst %.c,%.o,$(IOE_SPI_SRC))
IOE_SPI_USI_OBJ = $(patsubst %.c,%.o,$(IOE_SPI_USI_SRC))
IOE_SPI_USART_OBJ = $(patsubst %.c,%.o,$(IOE_SPI_USART_SRC))