Link the tools and the server against libwine so we can use the
[wine/multimedia.git] / tools / winedump / Makefile.in
bloba12e52461ae37c7a73256680ecad2485ece1c9b2
1 DEFS = -D__WINE__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ../..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
7 PROGRAMS = winedump
8 MODULE = none
10 C_SRCS = \
11 debug.c \
12 main.c \
13 misc.c \
14 msmangle.c \
15 output.c \
16 pe.c \
17 search.c \
18 symbol.c
20 all: $(PROGRAMS)
22 @MAKE_RULES@
24 winedump: $(OBJS)
25 $(CC) $(CFLAGS) -o winedump $(OBJS) $(LIBWINE) $(LDFLAGS)
27 install:: $(PROGRAMS)
28 [ -d $(bindir) ] || $(MKDIR) $(bindir)
29 $(INSTALL_PROGRAM) winedump $(bindir)/winedump
30 $(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(bindir)/function_grep.pl
32 uninstall::
33 $(RM) $(bindir)/winedump
34 $(RM) $(bindir)/function_grep.pl
36 ### Dependencies: