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@ ...@@ -2,8 +2,10 @@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../.. TOPOBJDIR = ../..
SRCDIR = @srcdir@ SRCDIR = @srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
EXEEXT = @EXEEXT@
PROGRAMS = winedump$(EXEEXT)
PROGRAMS = winedump
MODULE = none MODULE = none
C_SRCS = \ C_SRCS = \
...@@ -21,15 +23,15 @@ all: $(PROGRAMS) ...@@ -21,15 +23,15 @@ all: $(PROGRAMS)
@MAKE_RULES@ @MAKE_RULES@
winedump: $(OBJS) winedump$(EXEEXT): $(OBJS)
$(CC) $(CFLAGS) -o winedump $(OBJS) $(LIBPORT) $(LDFLAGS) $(CC) $(CFLAGS) -o winedump$(EXEEXT) $(OBJS) $(LIBPORT) $(LDFLAGS)
install:: $(PROGRAMS) install:: $(PROGRAMS)
$(MKINSTALLDIRS) $(bindir) $(MKINSTALLDIRS) $(bindir)
$(INSTALL_PROGRAM) winedump $(bindir)/winedump $(INSTALL_PROGRAM) winedump$(EXEEXT) $(bindir)/winedump$(EXEEXT)
$(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(bindir)/function_grep.pl $(INSTALL_SCRIPT) $(SRCDIR)/function_grep.pl $(bindir)/function_grep.pl
uninstall:: uninstall::
$(RM) $(bindir)/function_grep.pl $(bindir)/winedump $(RM) $(bindir)/function_grep.pl $(bindir)/winedump$(EXEEXT)
### Dependencies: ### 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