-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into process-information-buffer
- Loading branch information
Showing
159 changed files
with
7,818 additions
and
3,915 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,4 @@ lem-ncurses | |
build/* | ||
|
||
*.lx64fsl | ||
.qlot |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM docker.io/fukamachi/qlot | ||
|
||
COPY . . | ||
|
||
RUN apt-get update && apt-get install gcc libncurses-dev -y | ||
|
||
RUN qlot install | ||
|
||
RUN qlot exec sbcl --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/build-ncurses.lisp | ||
|
||
ENTRYPOINT qlot exec sbcl --eval "(ql:quickload :lem-ncurses)" --eval "(lem:lem)" --quit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
LISP ?= ${shell which sbcl} | ||
|
||
build-ncurses: | ||
$(LISP) --load scripts/patch-build-ncurses.lisp | ||
ncurses: | ||
qlot install | ||
$(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/build-ncurses.lisp | ||
|
||
build-sdl2: | ||
$(LISP) --load scripts/patch-build-sdl2.lisp | ||
sdl2: | ||
qlot install | ||
$(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/build-sdl2.lisp | ||
|
||
test: | ||
$(LISP) --load scripts/launch-tests.lisp | ||
qlot install | ||
.qlot/bin/rove lem-tests.asd | ||
|
||
generate-doc: | ||
$(LISP) --load scripts/generate-documentation-tests.lisp --eval '(progn (lem-documentation-mode/tests::generate-markdown-file "test.md" :test) (quit))' | ||
|
||
update-submodules: | ||
git submodule update --remote | ||
doc: | ||
qlot install | ||
$(LISP) --noinform --no-sysinit --no-userinit --load .qlot/setup.lisp --load scripts/generate-documentation-tests.lisp --eval '(progn (lem-documentation-mode/tests::generate-markdown-file "test.md" :test) (quit))' | ||
|
||
update: | ||
git pull | ||
git submodule update --init --recursive | ||
qlot install | ||
|
||
lint: | ||
.qlot/bin/sblint src/base/lem-base.asd | ||
.qlot/bin/sblint lem.asd | ||
.qlot/bin/sblint lib/lisp-syntax/lem-lisp-syntax.asd | ||
.qlot/bin/sblint extensions/lisp-mode/lem-lisp-mode.asd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
extensions/c-mode/grammer.lisp → extensions/c-mode/grammar.lisp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
(defsystem "lem-c-mode" | ||
:depends-on ("lem" "lem-lisp-mode") | ||
:serial t | ||
:components ((:file "grammer") | ||
:components ((:file "grammar") | ||
(:file "c-mode"))) |
Oops, something went wrong.