appwiz.cpl: Fix compilation on systems that don't support nameless unions.
[wine] / tools / winedump / Makefile.in
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR    = @srcdir@
4 VPATH     = @srcdir@
5 EXEEXT    = @EXEEXT@
6
7 PROGRAMS = winedump$(EXEEXT)
8 MANPAGES = winedump.man
9 MODULE   = none
10
11 C_SRCS = \
12         debug.c \
13         dos.c \
14         dump.c \
15         emf.c \
16         le.c \
17         lib.c \
18         lnk.c \
19         main.c \
20         minidump.c \
21         misc.c \
22         msc.c \
23         msmangle.c \
24         ne.c \
25         output.c \
26         pdb.c \
27         pe.c \
28         search.c \
29         symbol.c
30
31 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
32
33 all: $(PROGRAMS) $(MANPAGES)
34
35 @MAKE_RULES@
36
37 winedump$(EXEEXT): $(OBJS)
38         $(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
39
40 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
41         $(INSTALL_PROGRAM) winedump$(EXEEXT) $(DESTDIR)$(bindir)/winedump$(EXEEXT)
42         $(INSTALL_DATA) winedump.man $(DESTDIR)$(mandir)/man$(prog_manext)/winedump.$(prog_manext)
43         $(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(DESTDIR)$(bindir)/function_grep.pl
44
45 uninstall::
46         $(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/winedump.$(prog_manext)
47
48 @DEPENDENCIES@  # everything below this line is overwritten by make depend