Sweden-Number/tools/winedump/Makefile.in

39 lines
734 B
Makefile
Raw Normal View History

PROGRAMS = winedump$(EXEEXT)
MANPAGES = winedump.man.in
2001-01-04 20:45:49 +01:00
C_SRCS = \
debug.c \
dos.c \
dump.c \
emf.c \
font.c \
2005-01-03 15:48:49 +01:00
le.c \
lib.c \
2005-02-17 12:51:23 +01:00
lnk.c \
main.c \
minidump.c \
misc.c \
msc.c \
msmangle.c \
ne.c \
output.c \
pdb.c \
pe.c \
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
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
install install-dev:: $(PROGRAMS) install-man-pages
$(INSTALL_PROGRAM) winedump$(EXEEXT) $(DESTDIR)$(bindir)/winedump$(EXEEXT)
$(INSTALL_SCRIPT) $(srcdir)/function_grep.pl $(DESTDIR)$(bindir)/function_grep.pl
2001-01-04 20:45:49 +01:00
uninstall::
$(RM) $(DESTDIR)$(bindir)/function_grep.pl $(DESTDIR)$(bindir)/winedump$(EXEEXT)