summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-25 17:07:06 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-25 17:07:06 +0000
commit7ce42e25927a18323aabe87e006a6f699aaf3f25 (patch)
treeeda03ebce8a23172ccd945eea3a446cb78b91202 /fluid
parentd240b98ff6187831aba7309cca012cef410b4b29 (diff)
When installing FLUID under Cygwin, make sure we keep the .exe extension.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2550 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/fluid/Makefile b/fluid/Makefile
index b9fc446b9..41513b266 100644
--- a/fluid/Makefile
+++ b/fluid/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.10.2.6.2.21 2002/07/14 17:03:31 easysw Exp $"
+# "$Id: Makefile,v 1.10.2.6.2.22 2002/07/25 17:07:06 easysw Exp $"
#
# FLUID makefile for the Fast Light Tool Kit (FLTK).
#
@@ -75,10 +75,10 @@ include makedepend
install: $(PROGRAM)
echo "Installing FLUID in $(bindir)..."
-$(MKDIR) $(bindir)
- $(CP) $(FLUID) $(bindir)/fluid
- $(STRIP) $(bindir)/fluid
- $(bindir)/fltk-config --post $(bindir)/fluid
- $(CHMOD) 755 $(bindir)/fluid
+ $(CP) $(FLUID) $(bindir)/fluid$(EXEEXT)
+ $(STRIP) $(bindir)/fluid$(EXEEXT)
+ $(bindir)/fltk-config --post $(bindir)/fluid$(EXEEXT)
+ $(CHMOD) 755 $(bindir)/fluid$(EXEEXT)
uninstall:
$(RM) $(bindir)/fluid
@@ -95,5 +95,5 @@ rebuild:
./fluid -c widget_panel.fl
#
-# End of "$Id: Makefile,v 1.10.2.6.2.21 2002/07/14 17:03:31 easysw Exp $".
+# End of "$Id: Makefile,v 1.10.2.6.2.22 2002/07/25 17:07:06 easysw Exp $".
#