1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR = @srcdir@
4 VPATH = @srcdir@
5 EXEEXT = @EXEEXT@
6 DEFS = -D__WINESRC__ $(EXTRADEFS)
7
8 PROGRAMS = widl$(EXEEXT)
9 MANPAGES = widl.man
10 MODULE = none
11
12 C_SRCS = \
13 client.c \
14 expr.c \
15 hash.c \
16 header.c \
17 proxy.c \
18 server.c \
19 typegen.c \
20 typelib.c \
21 typetree.c \
22 utils.c \
23 widl.c \
24 write_msft.c
25
26 LEX_SRCS = parser.l
27 BISON_SRCS = parser.y
28
29 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
30
31 all: $(PROGRAMS) $(MANPAGES)
32
33 @MAKE_RULES@
34
35 widl$(EXEEXT): $(OBJS) $(LIBWPP)
36 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBWPP) $(LIBPORT) $(LDFLAGS)
37
38 install install-dev:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
39 $(INSTALL_PROGRAM) widl$(EXEEXT) $(DESTDIR)$(bindir)/widl$(EXEEXT)
40 $(INSTALL_DATA) widl.man $(DESTDIR)$(mandir)/man$(prog_manext)/widl.$(prog_manext)
41
42 uninstall::
43 $(RM) $(DESTDIR)$(bindir)/widl$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/widl.$(prog_manext)
44
45 parser.tab.c: parser.tab.h # for parallel makes
46
47 @DEPENDENCIES@ # everything below this line is overwritten by make depend
48
49 parser.yy.o: parser.tab.h
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.