winemaker: Fix typos in manpage.
[wine] / tools / winedump / Makefile.in
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR    = @srcdir@
4 VPATH     = @srcdir@
5 EXEEXT    = @EXEEXT@
6 DEFS      = -D__WINESRC__ $(EXTRADEFS)
7
8 PROGRAMS = winedump$(EXEEXT)
9 MANPAGES = winedump.man
10 MODULE   = none
11
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
32
33 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
34
35 all: $(PROGRAMS) $(MANPAGES)
36
37 @MAKE_RULES@
38
39 winedump$(EXEEXT): $(OBJS)
40         $(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
41
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
46
47 uninstall::
48         $(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/winedump.$(prog_manext)