28 lines
448 B
Makefile
28 lines
448 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = msacm32.dll
|
|
IMPORTLIB = msacm32
|
|
IMPORTS = winmm user32 advapi32 kernel32
|
|
|
|
C_SRCS = \
|
|
driver.c \
|
|
filter.c \
|
|
format.c \
|
|
internal.c \
|
|
msacm32_main.c \
|
|
pcmconverter.c \
|
|
stream.c
|
|
|
|
C_SRCS16 = \
|
|
msacm_main.c
|
|
|
|
SPEC_SRCS16 = msacm.spec
|
|
|
|
RC_SRCS = msacm.rc
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|