dxx-rebirth/input/Makefile.am
Bradley Bell f05dc678f0 This commit was generated by cvs2svn to compensate for changes in r5,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:34:09 +00:00

20 lines
445 B
Makefile

noinst_LIBRARIES = libinput.a
INCLUDES = -I $(top_srcdir)/includes -I $(top_srcdir)/main
libinput_a_SOURCES = sdl_event.c sdl_key.c sdl_mouse.c \
ggi_event.c ggi_key.c ggi_mouse.c \
dos_key.c dos_joyc.c dos_joydefs.c dos_mouse.c\
linux_joydefs.c linux_joystick.c
if ENV_DJGPP
SUFFIXES = .asm
%.o: %.asm
$(NASM) $(NASMFLAGS) $< -o $@
libinput_a_SOURCES += dos_joy2.asm
libinput_a_LIBADD += dos_joy2.o
dos_joyc.c: dos_joy2.o
endif