mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 06:06:13 +00:00
c94f44f9b4
Add a -L option to specify that path. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
36 lines
539 B
Makefile
36 lines
539 B
Makefile
PROGRAMS = widl
|
|
PARENTSRC = ../wrc
|
|
|
|
C_SRCS = \
|
|
client.c \
|
|
expr.c \
|
|
hash.c \
|
|
header.c \
|
|
proxy.c \
|
|
register.c \
|
|
server.c \
|
|
typegen.c \
|
|
typelib.c \
|
|
typetree.c \
|
|
utils.c \
|
|
widl.c \
|
|
wpp.c \
|
|
write_msft.c
|
|
|
|
LEX_SRCS = \
|
|
parser.l \
|
|
ppl.l
|
|
|
|
BISON_SRCS = \
|
|
parser.y \
|
|
ppy.y
|
|
|
|
MANPAGES = widl.man.in
|
|
|
|
widl_EXTRADEFS = \
|
|
-DINCLUDEDIR="\"${includedir}\"" \
|
|
-DDLLDIR="\"${dlldir}\"" \
|
|
-DBIN_TO_INCLUDEDIR=\"`${MAKEDEP} -R ${bindir} ${includedir}`\" \
|
|
-DBIN_TO_DLLDIR=\"`${MAKEDEP} -R ${bindir} ${dlldir}`\"
|
|
|
|
INSTALL_DEV = $(PROGRAMS)
|