Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
cl-bench
Commits
50fccb30
Commit
50fccb30
authored
May 13, 2016
by
Daniel Kochmański
Browse files
make: remove file optimizations
parent
9feebafa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
50fccb30
# To modify optimization settings, you can change the $(OPTIMIZE)
# variable below. This is prepended to the lisp source files before
# they are compiled.
#
# Requires GNU Make or equivalent.
SHELL
=
/bin/sh
OPTIMIZE
=
"(declaim (optimize (speed 3) (space 1) (safety 0) (debug 0) (compilation-speed 0)))"
FILES
:=
$(
patsubst
%.lisp,%.olisp,
$(
wildcard
files/
*
.lisp
))
vpath
%.lisp
files
%.olisp
:
%.lisp
echo
$(OPTIMIZE)
>
$@
cat
$<
>>
$@
optimize-files
:
$(FILES)
clean-results
:
-
rm
-f
/var/tmp/CL-bench
*
...
...
@@ -28,6 +10,6 @@ clean:
distclean
:
clean clean-results
.PHONY
:
clean clean-results distclean
optimize-files
.PHONY
:
clean clean-results distclean
# EOF
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment