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

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))