wrc: Change the format of the output of "wrc --verify-translation".
[wine] / tools / wrc / Makefile.in
1 DEFS      = -DINCLUDEDIR="\"$(includedir)\""
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ../..
4 SRCDIR    = @srcdir@
5 VPATH     = @srcdir@
6 EXEEXT    = @EXEEXT@
7
8 PROGRAMS = wrc$(EXEEXT)
9 MANPAGES = wrc.man
10 MODULE   = none
11
12 C_SRCS = \
13         dumpres.c \
14         genres.c \
15         newstruc.c \
16         readres.c \
17         translation.c \
18         utils.c \
19         wrc.c \
20         writeres.c
21
22 LEX_SRCS   = parser.l
23 BISON_SRCS = parser.y
24
25 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
26
27 all: $(PROGRAMS) $(MANPAGES)
28
29 @MAKE_RULES@
30
31 wrc$(EXEEXT): $(OBJS) $(LIBWPP)
32         $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBWPP) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LDFLAGS)
33
34 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
35         $(INSTALL_DATA) wrc.man $(DESTDIR)$(mandir)/man$(prog_manext)/wrc.$(prog_manext)
36         $(INSTALL_PROGRAM) wrc$(EXEEXT) $(DESTDIR)$(bindir)/wrc$(EXEEXT)
37
38 uninstall::
39         $(RM) $(DESTDIR)$(bindir)/wrc$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/wrc.$(prog_manext)
40
41 parser.tab.c: parser.tab.h   # for parallel makes
42
43 @DEPENDENCIES@  # everything below this line is overwritten by make depend
44
45 parser.yy.o: parser.tab.h