borgware-2d/joystick/Makefile

19 lines
278 B
Makefile
Raw Normal View History

TARGET =
TOPDIR = ..
include $(TOPDIR)/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
2009-07-09 20:08:40 +00:00
include $(TOPDIR)/rules.mk