Use $(EXEEXT) for the winedump executable.

This commit is contained in:
Jon Griffiths 2003-08-18 19:49:10 +00:00 committed by Alexandre Julliard
parent 3e12aba93f
commit 2d3e50537f
1 changed files with 7 additions and 5 deletions

View File

@ -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: