mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
41 lines
499 B
Makefile
41 lines
499 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winmm
|
|
SOVERSION = 1.0
|
|
ALTNAMES = mmsystem sound
|
|
IMPORTS = user32 kernel32
|
|
|
|
C_SRCS = \
|
|
joystick.c \
|
|
lolvldrv.c \
|
|
mci.c \
|
|
mmio.c \
|
|
mmsystem.c \
|
|
sound16.c \
|
|
time.c
|
|
|
|
GLUE = lolvldrv.c \
|
|
mmsystem.c \
|
|
time.c
|
|
|
|
RC_SRCS= \
|
|
winmm_res.rc
|
|
|
|
SUBDIRS = \
|
|
joystick \
|
|
mcianim \
|
|
mciavi \
|
|
mcicda \
|
|
mciseq \
|
|
mciwave \
|
|
midimap \
|
|
wavemap \
|
|
wineoss
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
all: check_wrc
|
|
|
|
### Dependencies:
|