-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update gitignore, add options to makefile, update make-image, update …
…asd file, fix some errors in code
- Loading branch information
Showing
6 changed files
with
45 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
\'#* | ||
.DS_Store | ||
\#* | ||
nobot-app | ||
release/ |
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,13 +1,26 @@ | ||
# Copyright (c) 2021 Bohdan Sokolovskyi | ||
# Author: Bohdan Sokolovskyi <[email protected]> | ||
|
||
# config variables | ||
project-dir=nobot/ | ||
SHELL=/bin/bash | ||
|
||
.PHONY: clean | ||
|
||
project-dir=nobot/ | ||
all: build install | ||
|
||
build: clean | ||
mkdir release | ||
sbcl --disable-debugger \ | ||
--load make-image.lisp | ||
|
||
help: | ||
@echo "all build help install uninstall clean" | ||
|
||
install: | ||
|
||
build: | ||
sbcl --load make-image.lisp | ||
uninstall: | ||
|
||
clean: | ||
rm nobot-app || : | ||
(find $(project-dir) -name '*.fasl' -print0 | xargs -0 rm ||:) | ||
(rm -rf release || :) | ||
(find $(project-dir) -name '*.fasl' -print0 | xargs -0 rm || :) |
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 |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
;;;; Author: Bohdan Sokolovskyi <[email protected]> | ||
|
||
|
||
(asdf:defsystem "nobot" | ||
(asdf:defsystem :nobot | ||
:class :package-inferred-system | ||
:defsystem-depends-on (:asdf-package-system) | ||
:description "Engine for creating chat bots" | ||
:version "1.0" | ||
:version "0.1" | ||
:author "Sokolovskyi Bohdan" | ||
:depends-on ("nobot/startup" | ||
"nobot/toplevel" | ||
|
@@ -24,6 +24,5 @@ | |
"cl-ppcre" | ||
"unix-opts" | ||
"yason") | ||
:in-order-to ((test-op (load-op "nobot/tests"))) | ||
;;TODO: change to rewd from string + eval, or another solution | ||
:perform (test-op (o c) (uiop:symbol-call :nobot/tests :run-unit-tests))) | ||
:in-order-to ((asdf:test-op (asdf:load-op :nobot/tests))) | ||
:perform (asdf:test-op (o c) (uiop:symbol-call :nobot/tests :run-unit-tests))) |