From 187913a836cad5a5c794f92dce5da338e6287239 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= <daniel@turtleware.eu>
Date: Fri, 12 Feb 2016 21:49:06 +0100
Subject: [PATCH] init: remove compiled files

Restructure caused a bug. Fixes #7.
---
 doit.lsp | 8 +++++++-
 makefile | 4 ++--
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/doit.lsp b/doit.lsp
index b50e4c30..c3be0b96 100644
--- a/doit.lsp
+++ b/doit.lsp
@@ -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))
diff --git a/makefile b/makefile
index a10b20e3..99cb36ff 100644
--- a/makefile
+++ b/makefile
@@ -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)
-- 
GitLab