30 lines
439 B
Makefile
30 lines
439 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = itss.dll
|
|
IMPORTS = ole32 user32 advapi32 kernel32 ntdll
|
|
EXTRALIBS = $(LIBUNICODE) -luuid
|
|
EXTRADEFS = -DCOM_NO_WINDOWS_H
|
|
|
|
C_SRCS = \
|
|
chm_lib.c \
|
|
lzx.c \
|
|
itss.c \
|
|
moniker.c \
|
|
storage.c
|
|
|
|
IDL_SRCS = \
|
|
itss.idl
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
.SUFFIXES: .idl .h
|
|
|
|
.idl.h:
|
|
$(WIDL) $(IDLFLAGS) -b -h -H $@ $<
|
|
|
|
idl: $(IDL_SRCS:.idl=.h)
|
|
|
|
### Dependencies:
|