msvcirt/tests: Add more streambuf tests.
[wine.git] / tools / widl / Makefile.in
bloba57f54fb622886aae43b32012486988dd961b1a9
1 PROGRAMS = widl$(EXEEXT)
2 MANPAGES = widl.man.in
4 C_SRCS = \
5 client.c \
6 expr.c \
7 hash.c \
8 header.c \
9 proxy.c \
10 register.c \
11 server.c \
12 typegen.c \
13 typelib.c \
14 typetree.c \
15 utils.c \
16 widl.c \
17 write_msft.c
19 LEX_SRCS = parser.l
20 BISON_SRCS = parser.y
22 widl_EXTRADEFS = -DDEFAULT_INCLUDE_DIR=\"${includedir}/windows/\"
24 OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o)
26 widl$(EXEEXT): $(OBJS) $(LIBWPP)
27 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBWPP) $(LIBPORT) $(LDFLAGS)
29 .PHONY: install install-dev uninstall
31 install install-dev:: $(PROGRAMS) install-man-pages
32 $(INSTALL_PROGRAM) widl$(EXEEXT) $(DESTDIR)$(bindir)/widl$(EXEEXT)
34 uninstall::
35 $(RM) $(DESTDIR)$(bindir)/widl$(EXEEXT)