Another round of const correctness fixes.
[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
9 MODULE   = none
10
11 C_SRCS = \
12         debug.c \
13         main.c  \
14         misc.c  \
15         msmangle.c  \
16         ne.c \
17         output.c  \
18         pe.c \
19         search.c  \
20         symbol.c
21
22 all: $(PROGRAMS)
23
24 @MAKE_RULES@
25
26 winedump$(EXEEXT): $(OBJS)
27         $(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
28
29 install:: $(PROGRAMS)
30         $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
31         $(INSTALL_PROGRAM) winedump$(EXEEXT) $(bindir)/winedump$(EXEEXT)
32         $(INSTALL_DATA) $(SRCDIR)/winedump.man $(mandir)/man$(prog_manext)/winedump.$(prog_manext)
33         $(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(bindir)/function_grep.pl
34
35 uninstall::
36         $(RM) $(bindir)/function_grep.pl $(bindir)/winedump$(EXEEXT)
37         $(RM) $(mandir)/man$(prog_manext)/winedump.$(prog_manext)
38
39 ### Dependencies: