Release 20050930.
[wine/gsoc-2012-control.git] / tools / widl / Makefile.in
blobff8ac5bdad72c49fe3db0fb69aa3df3e7d160e1a
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR = @srcdir@
4 VPATH = @srcdir@
5 LEXOPT = -Cf #-w -b
6 EXEEXT = @EXEEXT@
8 PROGRAMS = widl$(EXEEXT)
9 MODULE = none
11 C_SRCS = \
12 client.c \
13 hash.c \
14 header.c \
15 proxy.c \
16 server.c \
17 typelib.c \
18 utils.c \
19 widl.c \
20 write_msft.c
22 EXTRA_SRCS = parser.y parser.l
23 EXTRA_OBJS = parser.tab.o @LEX_OUTPUT_ROOT@.o
25 all: $(PROGRAMS)
27 @MAKE_RULES@
29 widl$(EXEEXT): $(OBJS) $(LIBDIR)/wpp/libwpp.a
30 $(CC) $(CFLAGS) -o $@ $(OBJS) -L$(LIBDIR) -lwpp -lwine_port $(LEXLIB) $(LDFLAGS)
32 parser.tab.c parser.tab.h: parser.y
33 $(BISON) -d -t $(SRCDIR)/parser.y -o parser.tab.c
35 # hack to allow parallel make
36 parser.tab.h: parser.tab.c
37 parser.tab.o: parser.tab.h
39 @LEX_OUTPUT_ROOT@.c: parser.l
40 $(LEX) $(LEXOPT) -d -8 $(SRCDIR)/parser.l
42 @LEX_OUTPUT_ROOT@.o: parser.tab.h
44 install:: $(PROGRAMS)
45 $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
46 $(INSTALL_PROGRAM) widl$(EXEEXT) $(bindir)/widl$(EXEEXT)
47 $(INSTALL_DATA) $(SRCDIR)/widl.man $(mandir)/man$(prog_manext)/widl.$(prog_manext)
49 uninstall::
50 $(RM) $(bindir)/widl$(EXEEXT) $(mandir)/man$(prog_manext)/widl.$(prog_manext)
52 ### Dependencies: