33 lines
504 B
Makefile
33 lines
504 B
Makefile
MODULE = dinput.dll
|
|
IMPORTLIB = dinput
|
|
IMPORTS = dxguid uuid comctl32 ole32 user32 advapi32
|
|
EXTRALIBS = @IOKITLIB@
|
|
|
|
C_SRCS = \
|
|
config.c \
|
|
data_formats.c \
|
|
device.c \
|
|
dinput_main.c \
|
|
effect_linuxinput.c \
|
|
joystick.c \
|
|
joystick_linux.c \
|
|
joystick_linuxinput.c \
|
|
joystick_osx.c \
|
|
keyboard.c \
|
|
mouse.c
|
|
|
|
IMPLIB_SRCS = data_formats.c
|
|
|
|
IDL_R_SRCS = dinput_classes.idl
|
|
|
|
PO_SRCS = dinput.rc
|
|
|
|
RC_SRCS = \
|
|
dinput.rc \
|
|
dinput_En.rc \
|
|
dinput_It.rc \
|
|
dinput_Ko.rc \
|
|
dinput_Lt.rc
|
|
|
|
@MAKE_DLL_RULES@
|