mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-29 02:33:58 +02:00
This adds a --winmd option that converts a runtime IDL file into a metadata file (.winmd).
30 lines
443 B
Makefile
30 lines
443 B
Makefile
PROGRAMS = widl
|
|
PARENTSRC = ../wrc
|
|
|
|
SOURCES = \
|
|
attribute.c \
|
|
client.c \
|
|
expr.c \
|
|
hash.c \
|
|
header.c \
|
|
metadata.c \
|
|
parser.l \
|
|
parser.y \
|
|
ppl.l \
|
|
ppy.y \
|
|
proxy.c \
|
|
register.c \
|
|
server.c \
|
|
typegen.c \
|
|
typelib.c \
|
|
typetree.c \
|
|
utils.c \
|
|
widl.c \
|
|
widl.man.in \
|
|
wpp.c \
|
|
write_msft.c \
|
|
write_sltg.c
|
|
|
|
widl_EXTRADEFS = -DINCLUDEDIR="\"${includedir}\"" -DBINDIR="\"${bindir}\"" -DLIBDIR="\"${libdir}\""
|
|
|
|
INSTALL_DEV = $(PROGRAMS)
|