Commit 2d3e5053 authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Use $(EXEEXT) for the winedump executable.

parent 3e12aba9
......@@ -2,8 +2,10 @@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
EXEEXT = @EXEEXT@
PROGRAMS = winedump$(EXEEXT)
PROGRAMS = winedump
MODULE = none
C_SRCS = \
......@@ -21,15 +23,15 @@ all: $(PROGRAMS)
@MAKE_RULES@
winedump: $(OBJS)
$(CC) $(CFLAGS) -o winedump $(OBJS) $(LIBPORT) $(LDFLAGS)
winedump$(EXEEXT): $(OBJS)
$(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
install:: $(PROGRAMS)
$(MKINSTALLDIRS) $(bindir)
$(INSTALL_PROGRAM) winedump $(bindir)/winedump
$(INSTALL_PROGRAM) winedump$(EXEEXT) $(bindir)/winedump$(EXEEXT)
$(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(bindir)/function_grep.pl
uninstall::
$(RM) $(bindir)/function_grep.pl $(bindir)/winedump
$(RM) $(bindir)/function_grep.pl $(bindir)/winedump$(EXEEXT)
### Dependencies:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment