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

include charLCD/files.mk
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))