-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
67 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#VERSION=$(subst openmcl-,,$(THING)) | ||
VERSION=$(THING) | ||
|
||
all: staging-archives/$(THING).tar.gz | ||
|
||
include GNUmakefile.base | ||
|
||
ifneq ($(os),Windows) | ||
staging-archives/$(THING).tar.gz: binary-archives/$(THING).tar.gz | ||
cat $< | (cd $(prefix); tar xzf -; mv ccl $(THING)) | ||
(cd $(prefix); tar czf - $(THING)) > $@ | ||
else | ||
staging-archives/$(THING).tar.gz: staging/$(THING) | ||
(cd staging; tar czf - $(THING)) > $@ | ||
|
||
staging/$(THING): binary-archives/$(THING).zip | ||
unzip $< -d staging; cd staging; mv ccl $(THING) | ||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
@echo off | ||
if NOT %OS%==Windows_NT goto checkhome | ||
for %%i in ( "%CD%" ) do set LISPBOX_HOME=%%~si% | ||
|
||
echo lispbox home is set to %LISPBOX_HOME% | ||
goto start | ||
|
||
:checkhome | ||
|
||
rem | ||
rem if the environment variable is not defined, dereferencing | ||
rem it produces the same string! | ||
rem | ||
|
||
if %LISPBOX_HOME%==%LISPBOX_HOME% goto noenv | ||
:start | ||
|
||
set EMACS=%LISPBOX_HOME%/emacs-21.3/bin/runemacs.exe | ||
set TO_EVAL="(progn (load \"lispbox\") (slime))" | ||
|
||
%EMACS% --no-init-file --no-site-file --eval=%TO_EVAL% | ||
|
||
goto end | ||
|
||
:noenv | ||
|
||
echo LISPBOX_HOME environment variable should be set and | ||
echo point to the installation directory of LISPBOX before | ||
echo launching this command. | ||
|
||
:end | ||
@echo off | ||
rem Thanks to Venkat who provided this bit of COMMAND wizardry. | ||
|
||
if NOT %OS%==Windows_NT goto checkhome | ||
for %%i in ( "%CD%" ) do set LISPBOX_HOME=%%~si% | ||
goto start | ||
|
||
:checkhome | ||
|
||
rem | ||
rem if the environment variable is not defined, dereferencing | ||
rem it produces the same string! | ||
rem | ||
|
||
if %LISPBOX_HOME%==%LISPBOX_HOME% goto noenv | ||
:start | ||
|
||
set EMACS=%LISPBOX_HOME%/emacs-23.1/bin/runemacs.exe | ||
set TO_EVAL="(progn (load \"lispbox\") (slime))" | ||
|
||
%EMACS% --no-init-file --no-site-file --eval=%TO_EVAL% | ||
|
||
goto end | ||
|
||
:noenv | ||
|
||
echo LISPBOX_HOME environment variable should be set and | ||
echo point to the installation directory of LISPBOX before | ||
echo launching this command. | ||
|
||
:end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters