2008-12-03 05:40:16 +00:00
|
|
|
TARGET = libborg_hw.a
|
|
|
|
TOPDIR = ..
|
|
|
|
|
2008-12-03 13:22:20 +00:00
|
|
|
SRC_SIM :=
|
|
|
|
|
2008-12-03 05:40:16 +00:00
|
|
|
include $(TOPDIR)/defaults.mk
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(BORG_HW),HW_BORG_16)
|
|
|
|
SRC = borg_hw_borg16.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BORG_HW),HW_BORG_ANDRE)
|
|
|
|
SRC = borg_hw_andreborg.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BORG_HW),HW_BORG_LS)
|
|
|
|
SRC = borg_hw_borg_ls.c
|
|
|
|
endif
|
|
|
|
|
2009-02-18 22:26:46 +00:00
|
|
|
ifeq ($(BORG_HW),HW_BORG_MH)
|
|
|
|
SRC = borg_hw_borg_mh.c
|
2008-12-03 05:40:16 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BORG_HW),HW_BORG_MINI)
|
|
|
|
SRC = borg_hw_borg_mini.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(SRC),'')
|
|
|
|
$(error no valid hardware driver selected )
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|