borgware-2d/src/joystick/Makefile

31 lines
537 B
Makefile
Raw Normal View History

MAKETOPDIR = ../..
TARGET =
include $(MAKETOPDIR)/defaults.mk
SRC_SIM =
2010-02-01 15:35:27 +00:00
ifeq ($(NES_PAD_SUPPORT), y)
2009-07-09 20:08:40 +00:00
SRC = nes_pad.c
endif
2010-02-01 15:35:27 +00:00
ifeq ($(PARALLEL_JOYSTICK_SUPPORT), y)
SRC = joystick.c
endif
2012-03-01 23:20:05 +00:00
ifeq ($(RFM12_JOYSTICK_SUPPORT), y)
SRC = rfm12_joystick.c
endif
ifeq ($(HC165_JOYSTICK_SUPPORT), y)
SRC = hc165_joystick.c
endif
ifeq ($(LOLSHIELD_JOYSTICK_SUPPORT), y)
SRC = lolshield_joystick.c
endif
ifeq ($(NULL_JOYSTICK_SUPPORT), y)
SRC = null_joystick.c
endif
2009-07-09 20:08:40 +00:00
include $(MAKETOPDIR)/rules.mk
include $(MAKETOPDIR)/depend.mk