oleaut32: Fix a TypeAttr leak.
[wine/hacks.git] / tools / wrc / Makefile.in
blobe0efa18ff6c40206cfce64583d082d1b1b392bce
1 DEFS = -DINCLUDEDIR="\"$(includedir)\""
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ../..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
6 EXEEXT = @EXEEXT@
8 PROGRAMS = wrc$(EXEEXT)
9 MANPAGES = wrc.man
10 MODULE = none
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
22 LEX_SRCS = parser.l
23 BISON_SRCS = parser.y
25 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
27 all: $(PROGRAMS) $(MANPAGES)
29 @MAKE_RULES@
31 wrc$(EXEEXT): $(OBJS) $(LIBWPP)
32 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBWPP) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LEXLIB) $(LDFLAGS)
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)
38 uninstall::
39 $(RM) $(DESTDIR)$(bindir)/wrc$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/wrc.$(prog_manext)
41 parser.tab.c: parser.tab.h # for parallel makes
43 @DEPENDENCIES@ # everything below this line is overwritten by make depend
45 parser.yy.o: parser.tab.h