Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
bc0eeca8
Commit
bc0eeca8
authored
Mar 08, 2005
by
simonmar
Browse files
[project @ 2005-03-08 11:56:55 by simonmar]
Allow for optional binary installation
parent
460af126
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
bc0eeca8
...
...
@@ -269,6 +269,7 @@ binary-dist::
echo
"PACKAGE_LIB_PRL_SCRIPTS =
$
(
$(Project)
BinDistLibPrlScripts)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_LIB_SPLICED_FILES =
$
(
$(Project)
BinDistLibSplicedFiles)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_BINS =
$
(
$(Project)
BinDistBins)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_OPT_BINS =
$
(
$(Project)
BinDistOptBins)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
echo
"PACKAGE_LINKS =
$
(
$(Project)
BinDistLinks)"
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
cat
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile-bin.in
>>
$(BIN_DIST_TMPDIR)
/
$(BIN_DIST_NAME)
/Makefile.in
@
echo
"Generating a shippable configure script.."
...
...
distrib/Makefile-bin.in
View file @
bc0eeca8
...
...
@@ -223,6 +223,9 @@ install-bin:
for i in $(PACKAGE_BINS) ""; do \
if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
done;
for i in $(PACKAGE_OPT_BINS) ""; do \
if test -n "$$i" -a ! -e "$(bindir)/$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \
done;
@for i in $(VERSION_SYMLINKS_FOR) ""; do \
if [ "x$$i" != "x" ]; then \
( cd $(bindir); \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment