quartz/tests: Add test for querying IAMDirectSound from DSoundRenderer.
[wine.git] / tools / winedump / Makefile.in
blobbee2fcc175b6cfdb48e15adfd16e34ea6d5ca138
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR = @srcdir@
4 VPATH = @srcdir@
5 EXEEXT = @EXEEXT@
6 DEFS = -D__WINESRC__ $(EXTRADEFS)
8 PROGRAMS = winedump$(EXEEXT)
9 MANPAGES = winedump.man
10 MODULE = none
12 C_SRCS = \
13 debug.c \
14 dos.c \
15 dump.c \
16 emf.c \
17 font.c \
18 le.c \
19 lib.c \
20 lnk.c \
21 main.c \
22 minidump.c \
23 misc.c \
24 msc.c \
25 msmangle.c \
26 ne.c \
27 output.c \
28 pdb.c \
29 pe.c \
30 search.c \
31 symbol.c
33 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
35 all: $(PROGRAMS) $(MANPAGES)
37 @MAKE_RULES@
39 winedump$(EXEEXT): $(OBJS)
40 $(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
42 install install-dev:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
43 $(INSTALL_PROGRAM) winedump$(EXEEXT) $(DESTDIR)$(bindir)/winedump$(EXEEXT)
44 $(INSTALL_DATA) winedump.man $(DESTDIR)$(mandir)/man$(prog_manext)/winedump.$(prog_manext)
45 $(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(DESTDIR)$(bindir)/function_grep.pl
47 uninstall::
48 $(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/winedump.$(prog_manext)
50 @DEPENDENCIES@ # everything below this line is overwritten by make depend