aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-01-19 19:28:58 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-01-19 19:28:58 +0000
commit9d2b9b9fabb73757c710440c955ef528d76aea87 (patch)
treeafc998539d602f3e68a026ab92c04e00ff77f640
parent1499216f9a9d8c56e8bd1c7699789e392dc60df7 (diff)
added to add .exe to cyclist on Windows
svn path=/trunk/externals/miXed/; revision=14759
-rw-r--r--cyclone/Makefile.libdir4
1 files changed, 3 insertions, 1 deletions
diff --git a/cyclone/Makefile.libdir b/cyclone/Makefile.libdir
index bd83ada..6b7f42f 100644
--- a/cyclone/Makefile.libdir
+++ b/cyclone/Makefile.libdir
@@ -64,6 +64,7 @@ ifeq ($(UNAME),Linux)
endif
ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME)))
CPU := $(shell uname -m)
+ EXE = .exe
EXTENSION = dll
OS = cygwin
PD_PATH = $(cygpath $(PROGRAMFILES))/pd
@@ -75,6 +76,7 @@ ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME)))
endif
ifeq (MINGW,$(findstring MINGW,$(UNAME)))
CPU := $(shell uname -m)
+ EXE = .exe
EXTENSION = dll
OS = windows
PD_PATH = $(shell cd "$(PROGRAMFILES)"/pd && pwd)
@@ -115,7 +117,7 @@ install: cyclone
# install "cyclist" command line app with pd
$(INSTALL_DIR) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) ../bin/cyclist $(DESTDIR)$(bindir)
- $(STRIP) $(DESTDIR)$(bindir)/cyclist
+ $(STRIP) $(DESTDIR)$(bindir)/cyclist$(EXE)
clean:
-$(MAKE) -f Makefile $(DEST_PATHS) clean