mshtml: Use QueryService helper function in SetClientSite implementation.
[wine] / tools / widl / Makefile.in
1 DEFS      = -D__WINESRC__ $(EXTRADEFS)
2
3 PROGRAMS = widl$(EXEEXT)
4 MANPAGE  = widl.man
5
6 C_SRCS = \
7         client.c \
8         expr.c \
9         hash.c \
10         header.c \
11         proxy.c \
12         register.c \
13         server.c \
14         typegen.c \
15         typelib.c \
16         typetree.c \
17         utils.c \
18         widl.c \
19         write_msft.c
20
21 LEX_SRCS   = parser.l
22 BISON_SRCS = parser.y
23
24 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
25
26 all: $(PROGRAMS)
27
28 @MAKE_RULES@
29
30 widl$(EXEEXT): $(OBJS) $(LIBWPP)
31         $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBWPP) $(LIBPORT) $(LDFLAGS)
32
33 install install-dev:: $(PROGRAMS) $(DESTDIR)$(bindir)
34         $(INSTALL_PROGRAM) widl$(EXEEXT) $(DESTDIR)$(bindir)/widl$(EXEEXT)
35
36 uninstall::
37         $(RM) $(DESTDIR)$(bindir)/widl$(EXEEXT)