pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
482 B
32 lines
482 B
16 years ago
|
TARGET = libborg_hw.a
|
||
|
TOPDIR = ..
|
||
|
|
||
|
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
|
||
|
|
||
|
ifeq ($(BORG_HW),HW_BORG_LS)
|
||
|
SRC = borg_hw_borg_ls.c
|
||
|
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
|