d3dx9: Don't allocate the state parameter.
[wine.git] / tools / winedump / Makefile.in
blobe8a6ba31e25bef17cb42503d9564c4c82fd4ac8e
1 PROGRAMS = winedump$(EXEEXT)
2 MANPAGE = winedump.man
4 C_SRCS = \
5 debug.c \
6 dos.c \
7 dump.c \
8 emf.c \
9 font.c \
10 le.c \
11 lib.c \
12 lnk.c \
13 main.c \
14 minidump.c \
15 misc.c \
16 msc.c \
17 msmangle.c \
18 ne.c \
19 output.c \
20 pdb.c \
21 pe.c \
22 search.c \
23 symbol.c \
24 tlb.c
26 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
28 all: $(PROGRAMS)
30 @MAKE_RULES@
32 winedump$(EXEEXT): $(OBJS)
33 $(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
35 install install-dev:: $(PROGRAMS) $(DESTDIR)$(bindir) install-man-pages
36 $(INSTALL_PROGRAM) winedump$(EXEEXT) $(DESTDIR)$(bindir)/winedump$(EXEEXT)
37 $(INSTALL_SCRIPT) $(srcdir)/function_grep.pl $(DESTDIR)$(bindir)/function_grep.pl
39 uninstall::
40 $(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT)