wine-wine/tools/winedump/Makefile.in

42 lines
806 B
Makefile
Raw Normal View History

DEFS = -D__WINESRC__ $(EXTRADEFS)
PROGRAMS = winedump$(EXEEXT)
MANPAGE = winedump.man
2001-01-04 19:45:49 +00:00
C_SRCS = \
debug.c \
dos.c \
dump.c \
emf.c \
font.c \
2005-01-03 14:48:49 +00:00
le.c \
lib.c \
2005-02-17 11:51:23 +00:00
lnk.c \
main.c \
minidump.c \
misc.c \
msc.c \
msmangle.c \
ne.c \
output.c \
pdb.c \
pe.c \
search.c \
2001-01-04 19:45:49 +00:00
symbol.c
INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
all: $(PROGRAMS)
2001-01-04 19:45:49 +00:00
@MAKE_RULES@
winedump$(EXEEXT): $(OBJS)
$(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
2001-01-04 19:45:49 +00:00
install install-dev:: $(PROGRAMS) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) winedump$(EXEEXT) $(DESTDIR)$(bindir)/winedump$(EXEEXT)
$(INSTALL_SCRIPT) $(srcdir)/function_grep.pl $(DESTDIR)$(bindir)/function_grep.pl
2001-01-04 19:45:49 +00:00
uninstall::
$(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT)