mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 22:50:08 +00:00
34fa35dc99
makefiles, and added support for building a .def.a static import library too.
28 lines
491 B
Makefile
28 lines
491 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = dmusic.dll
|
|
IMPORTLIB = libdmusic.$(IMPLIBEXT)
|
|
IMPORTS = winmm ole32 msacm32 dsound rpcrt4 user32 advapi32 kernel32 ntdll
|
|
EXTRALIBS = -ldxguid -luuid
|
|
|
|
C_SRCS = \
|
|
buffer.c \
|
|
clock.c \
|
|
collection.c \
|
|
dmusic.c \
|
|
dmusic_main.c \
|
|
download.c \
|
|
downloadedinstrument.c \
|
|
instrument.c \
|
|
port.c \
|
|
portdownload.c \
|
|
regsvr.c \
|
|
thru.c
|
|
|
|
RC_SRCS = version.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
### Dependencies:
|