borgware-2d/joystick/Makefile

22 lines
346 B
Makefile

TARGET =
TOPDIR = ..
include $(TOPDIR)/defaults.mk
SRC_SIM =
ifeq ($(NES_PAD_SUPPORT), y)
SRC = nes_pad.c
endif
ifeq ($(PARALLEL_JOYSTICK_SUPPORT), y)
SRC = joystick.c
endif
ifeq ($(RFM12_JOYSTICK_SUPPORT), y)
SRC = rfm12_joystick.c
endif
ifeq ($(HC165_JOYSTICK_SUPPORT), y)
SRC = hc165_joystick.c
endif
include $(TOPDIR)/rules.mk