osd-contiki/board/Makefile.board
2010-03-01 13:05:10 -05:00

22 lines
599 B
Makefile

# -*- makefile -*-
BOARDS := redbee-dev redbee-r1 redbee-usb redbee-econotag
OBJDIR := obj_$(BOARD)_board
CFLAGS += -I$(OBJDIR) -I$(MC1322X)/board -DBOARD=$(BOARD)
$(OBJDIR):
ifndef BOARD
${warning BOARD not defined}
${warning echo "make BOARD=foo"}
${warning "boards: $(BOARDS)"}
${error you must define BOARD}
endif
@echo "setup object directory for dev board"
mkdir $(OBJDIR)
$(OBJDIR)/board.h: $(OBJDIR)
ln -sf ../$(MC1322X)/board/$(BOARD).h $(OBJDIR)/board.h
# this touch is a hack --- need to sort out deps and a way to make sure the board links get made.
touch $(OBJDIR)/board.h