From 6532633fe9d9309a28d39407acb4bf9c4bea0e34 Mon Sep 17 00:00:00 2001 From: Brian O'Reilly Date: Thu, 4 Sep 2025 11:58:41 -0400 Subject: [PATCH 1/2] clean out the Makefile a bit. --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 06f3405..f9575bb 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,5 @@ quicklisp-manifest.txt: *.asd --eval '(ql:quickload "$(PACKAGE)")'\ --eval '(ql:write-asdf-manifest-file "quicklisp-manifest.txt")' -# buildapp: -# sbcl --eval '(ql:quickload "buildapp")' --eval '(buildapp:build-buildapp)' --non-interactive - clean: rm -f *.fasl $(OUT) buildapp quicklisp-manifest.txt From b14a4d56802dc585201c2e3dcb879eec84efe3ce Mon Sep 17 00:00:00 2001 From: Brian O'Reilly Date: Mon, 8 Sep 2025 11:07:02 -0400 Subject: [PATCH 2/2] tiny cleanup. --- asteroid.asd | 1 - module.lisp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/asteroid.asd b/asteroid.asd index 3159d07..c3b2630 100644 --- a/asteroid.asd +++ b/asteroid.asd @@ -13,7 +13,6 @@ :r-clip :spinneret :cl-json - ;; :com.inuoe.jzon :dexador :lass) :pathname "./" diff --git a/module.lisp b/module.lisp index 45c538e..a965b55 100644 --- a/module.lisp +++ b/module.lisp @@ -1,4 +1,5 @@ (in-package #:rad-user) + (define-module #:asteroid (:use #:cl #:radiance #:asteroid.app-utils) (:export #:-main))