2003-08-18 21:49:10 +02:00
|
|
|
PROGRAMS = winedump$(EXEEXT)
|
2013-11-18 11:34:03 +01:00
|
|
|
MANPAGES = winedump.man.in
|
2001-01-04 20:45:49 +01:00
|
|
|
|
|
|
|
C_SRCS = \
|
2001-09-07 18:04:38 +02:00
|
|
|
debug.c \
|
2007-01-05 21:42:19 +01:00
|
|
|
dos.c \
|
2005-03-07 12:03:53 +01:00
|
|
|
dump.c \
|
2005-01-04 21:32:25 +01:00
|
|
|
emf.c \
|
2009-05-11 13:56:23 +02:00
|
|
|
font.c \
|
2005-01-03 15:48:49 +01:00
|
|
|
le.c \
|
2006-11-28 11:40:13 +01:00
|
|
|
lib.c \
|
2005-02-17 12:51:23 +01:00
|
|
|
lnk.c \
|
2005-03-07 12:03:53 +01:00
|
|
|
main.c \
|
|
|
|
minidump.c \
|
|
|
|
misc.c \
|
2006-11-29 21:41:05 +01:00
|
|
|
msc.c \
|
2005-03-07 12:03:53 +01:00
|
|
|
msmangle.c \
|
2002-10-02 20:50:09 +02:00
|
|
|
ne.c \
|
2005-03-07 12:03:53 +01:00
|
|
|
output.c \
|
2006-11-29 21:40:58 +01:00
|
|
|
pdb.c \
|
2001-09-07 18:04:38 +02:00
|
|
|
pe.c \
|
2005-03-07 12:03:53 +01:00
|
|
|
search.c \
|
2012-12-04 13:08:53 +01:00
|
|
|
symbol.c \
|
|
|
|
tlb.c
|
2001-01-04 20:45:49 +01:00
|
|
|
|
2014-01-14 11:59:25 +01:00
|
|
|
OBJS = $(C_SRCS:.c=.o)
|
2001-01-04 20:45:49 +01:00
|
|
|
|
2003-08-18 21:49:10 +02:00
|
|
|
winedump$(EXEEXT): $(OBJS)
|
|
|
|
$(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
|
2001-01-04 20:45:49 +01:00
|
|
|
|
2014-01-14 11:59:25 +01:00
|
|
|
.PHONY: install install-dev uninstall
|
|
|
|
|
2013-12-26 13:24:26 +01:00
|
|
|
install install-dev:: $(PROGRAMS) install-man-pages
|
2006-02-14 13:51:38 +01:00
|
|
|
$(INSTALL_PROGRAM) winedump$(EXEEXT) $(DESTDIR)$(bindir)/winedump$(EXEEXT)
|
2010-09-19 12:40:12 +02:00
|
|
|
$(INSTALL_SCRIPT) $(srcdir)/function_grep.pl $(DESTDIR)$(bindir)/function_grep.pl
|
2001-01-04 20:45:49 +01:00
|
|
|
|
|
|
|
uninstall::
|
2010-12-05 16:17:42 +01:00
|
|
|
$(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT)
|