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
ansi-test
Commits
187913a8
Commit
187913a8
authored
Feb 12, 2016
by
Daniel Kochmański
Browse files
init: remove compiled files
Restructure caused a bug. Fixes #7.
parent
dcaa3a30
Changes
2
Hide whitespace changes
Inline
Side-by-side
doit.lsp
View file @
187913a8
...
...
@@ -10,7 +10,13 @@
(let* ((fn (compile-file-pathname "doit.lsp"))
(type (pathname-type fn))
(dir-pathname (make-pathname :name :wild :type type))
(files (directory dir-pathname)))
(subdir-pathname (make-pathname :directory '(:relative :wild)
:name :wild :type type))
(format-pathname (make-pathname :directory '(:relative "printer/format")
:name :wild :type type))
(files (append (directory dir-pathname)
(directory subdir-pathname)
(directory format-pathname))))
(assert type)
(assert (not (string-equal type "lsp")))
(mapc #'delete-file files))
...
...
makefile
View file @
187913a8
...
...
@@ -136,8 +136,8 @@ rt_1000_8:
clean
:
@
rm
-f
auxiliary
/
*
.
{
out,fas,cls,fasl,o,so,~,fn,x86f,ufsl,abcl,lib
}
@
rm
-f
sandbox
/
*
.
{
out,fas,cls,fasl,o,so,~,fn,x86f,ufsl,abcl,lib
}
@
rm
-f
*
/
*
.
{
out,fas,cls,fasl,o,so,~,fn,x86f,ufsl,abcl,lib
}
@
rm
-f
*
/
*
/
*
.
{
out,fas,cls,fasl,o,so,~,fn,x86f,ufsl,abcl,lib
}
@
rm
-f
test
*
.out
*
.cls
*
.fasl
*
.o
*
.so
*
~
*
.fn
*
.x86f
*
.fasl
*
.ufsl
*
.abcl
*
.fas
*
.lib
\#
*
\#
@
rm
-f
*
.dfsl
*
.d64fsl
@
(
cd
beyond-ansi
;
$(MAKE)
clean
)
...
...
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