68 lines
1 KiB
Plaintext
68 lines
1 KiB
Plaintext
|
!ifndef ROOT
|
||
|
ROOT=$(MAKEDIR:\av\codecs\lh=)
|
||
|
!endif
|
||
|
!ifndef DEVROOT
|
||
|
DEVROOT=$(ROOT)\dev
|
||
|
!endif
|
||
|
|
||
|
|
||
|
!include $(DEVROOT)\common.inc
|
||
|
|
||
|
MAJORCOMP=codecs
|
||
|
MINORCOMP=lhacm
|
||
|
|
||
|
TARGETNAME=lhacm
|
||
|
TARGETEXT=acm
|
||
|
TARGETPATH=$(_OBJ_DIR)
|
||
|
TARGETTYPE=DYNLINK
|
||
|
|
||
|
DLLDEF=lhacm.def
|
||
|
DLLENTRY=DllEntryPoint
|
||
|
|
||
|
|
||
|
TARGETLIBS=$(SDK_LIB_PATH)\winmm.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\advapi32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\msacm32.lib \
|
||
|
|
||
|
INCLUDES=..\..\h;$(ROOT)\h
|
||
|
MSC_WARNING_LEVEL = /W1
|
||
|
# USER_C_FLAGS=/FAcs $(USER_C_FLAGS)
|
||
|
|
||
|
#
|
||
|
# List of sources
|
||
|
#
|
||
|
|
||
|
SOURCES= \
|
||
|
init.c \
|
||
|
lhacm.c \
|
||
|
bib_32.c \
|
||
|
data.c \
|
||
|
getsize.c \
|
||
|
encoder.c \
|
||
|
decoder.c \
|
||
|
lhacm.rc
|
||
|
|
||
|
|
||
|
#
|
||
|
# Precompiled specs
|
||
|
#
|
||
|
|
||
|
#PRECOMPILED_INCLUDE = precomp.h
|
||
|
#PRECOMPILED_PCH = precomp.pch
|
||
|
#PRECOMPILED_cpp = precomp.obj
|
||
|
#PRECOMPILED_CXX = 1
|
||
|
|
||
|
|
||
|
CONDITIONAL_INCLUDES = \
|
||
|
macocidl.h \
|
||
|
macwin32.h \
|
||
|
rpcerr.h \
|
||
|
rpcmac.h \
|
||
|
winwlm.h \
|
||
|
macname1.h \
|
||
|
macname2.h \
|
||
|
macpub.h \
|
||
|
macapi.h
|