Use $(EXEEXT) for the winedump executable.
This commit is contained in:
parent
3e12aba93f
commit
2d3e50537f
@ -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)
|
|||||||
|
|
||||||
@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:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user