mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
34fa35dc99
makefiles, and added support for building a .def.a static import library too.
37 lines
515 B
Makefile
37 lines
515 B
Makefile
EXTRADEFS = -D_WINMM_
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winmm.dll
|
|
IMPORTLIB = libwinmm.$(IMPLIBEXT)
|
|
IMPORTS = user32 advapi32 kernel32 ntdll
|
|
EXTRALIBS = $(LIBUNICODE)
|
|
|
|
C_SRCS = \
|
|
driver.c \
|
|
joystick.c \
|
|
lolvldrv.c \
|
|
mci.c \
|
|
mmio.c \
|
|
playsound.c \
|
|
time.c \
|
|
winmm.c
|
|
|
|
C_SRCS16 = \
|
|
message16.c \
|
|
mmsystem.c \
|
|
sound16.c
|
|
|
|
SPEC_SRCS16 = \
|
|
mmsystem.spec \
|
|
sound.spec
|
|
|
|
RC_SRCS = winmm_res.rc
|
|
|
|
SUBDIRS = tests
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
### Dependencies:
|