Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hugo Ishimaru
asdf
Commits
75093284
Commit
75093284
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Try to use - instead of _ for labels...
parent
6aa8b8d0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
make.bat
+7
-7
7 additions, 7 deletions
make.bat
make.sh
+6
-6
6 additions, 6 deletions
make.sh
with
13 additions
and
13 deletions
make.bat
+
7
−
7
View file @
75093284
...
...
@@ -10,13 +10,13 @@ cd %~p0
if
"
%
1"
==
""
goto
all
if
"
%
1"
==
"all"
goto
all
if
"
%
1"
==
"build
_
asdf"
goto
build
_
asdf
if
"
%
1"
==
"build
-
asdf"
goto
build
-
asdf
if
"
%
1"
==
"ext"
goto
ext
if
"
%
1"
==
"noext"
goto
noext
if
"
%
1"
==
"driver
_
files"
goto
driver
_
files
if
"
%
1"
==
"defsystem
_
files"
goto
defsystem
_
files
if
"
%
1"
==
"driver
-
files"
goto
driver
-
files
if
"
%
1"
==
"defsystem
-
files"
goto
defsystem
-
files
call
%
0
build
_
asdf
call
%
0
build
-
asdf
%here%
\asdf
-tools
.bat
env
%
*
goto
:end
...
...
@@ -24,7 +24,7 @@ goto :end
:all
:: Default action: bootstrap asdf.lisp
:build
_
asdf
:build
-
asdf
:: That's the only thing that we really need before we may invoke asdf-builder.
if
not
exist
build
mkdir
build
set
a
=
build
\asdf.lisp
...
...
@@ -50,12 +50,12 @@ goto :end
git
submodule
deinit
.
goto
end
:driver
_
files
:driver
-
files
:: These targets are used during tests to ensure the Makefile is in synch with the .asd files.
echo
%driver_lisp%
goto
end
:defsystem
_
files
:defsystem
-
files
:: These targets are used during tests to ensure the Makefile is in synch with the .asd files.
echo
%defsystem_lisp%
goto
end
...
...
This diff is collapsed.
Click to expand it.
make.sh
+
6
−
6
View file @
75093284
...
...
@@ -8,9 +8,9 @@ defsystem_lisp="upgrade.lisp component.lisp system.lisp cache.lisp find-system.l
all
()
{
# Default action: bootstrap asdf.lisp
build
_
asdf
build
-
asdf
}
build
_
asdf
()
{
build
-
asdf
()
{
# That's the only thing that we really need before we may invoke asdf-builder.
mkdir
-p
build
a
=
build/asdf.lisp
...
...
@@ -29,17 +29,17 @@ noext () {
# Remove all the development-time dependencies of ASDF:
git submodule deinit
.
}
driver
_
files
()
{
driver
-
files
()
{
# These targets are used during tests to ensure the Makefile is in synch with the .asd files.
echo
${
driver_lisp
}
}
defsystem
_
files
()
{
defsystem
-
files
()
{
# These targets are used during tests to ensure the Makefile is in synch with the .asd files.
echo
${
defsystem_lisp
}
}
case
"
$1
"
in
""
)
all
;;
all|build
_
asdf|ext|noext|driver
_
files|defsystem
_
files
)
"
$@
"
;;
*
)
build
_
asdf
;
exec
${
here
}
/asdf-tools
env
"
$@
"
;;
all|build
-
asdf|ext|noext|driver
-
files|defsystem
-
files
)
"
$@
"
;;
*
)
build
-
asdf
;
exec
${
here
}
/asdf-tools
env
"
$@
"
;;
esac
;
exit
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment