summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2022-06-27 00:26:23 +0530
committerArun Isaac2022-06-27 00:26:23 +0530
commit712bada146097dc9edd032f5810b753e1fea97a0 (patch)
treec7df838ac5d3e01703fa14dd2ae78518d8436e1e
parent1a0e0e89a8cefb0016767cf8fb940f64274a40ea (diff)
downloadtissue-712bada146097dc9edd032f5810b753e1fea97a0.tar.gz
tissue-712bada146097dc9edd032f5810b753e1fea97a0.tar.lz
tissue-712bada146097dc9edd032f5810b753e1fea97a0.zip
web: Move (tissue web) to (tissue web static).
* tissue/web.scm: Rename to tissue/web/static.scm. * bin/tissue: Import (tissue web static) instead of (tissue web). * Makefile (sources): Add sources in tissue/web/.
-rw-r--r--Makefile2
-rwxr-xr-xbin/tissue2
-rw-r--r--tissue/web/static.scm (renamed from tissue/web.scm)2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a22b553..15a441c 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ libdir ?= $(exec_prefix)/lib
datarootdir ?= $(prefix)/share
top_level_module_dir = $(project)
-sources = $(wildcard $(top_level_module_dir)/*.scm)
+sources = $(wildcard $(top_level_module_dir)/*.scm) $(wildcard $(top_level_module_dir)/web/*.scm)
objects = $(sources:.scm=.go)
scripts = $(wildcard bin/*)
diff --git a/bin/tissue b/bin/tissue
index 1453112..3ae62eb 100755
--- a/bin/tissue
+++ b/bin/tissue
@@ -42,7 +42,7 @@ exec guile --no-auto-compile -s "$0" "$@"
(tissue issue)
(tissue tissue)
(tissue utils)
- (tissue web))
+ (tissue web static))
(define %state-directory
".tissue")
diff --git a/tissue/web.scm b/tissue/web/static.scm
index 0b8be84..e02c129 100644
--- a/tissue/web.scm
+++ b/tissue/web/static.scm
@@ -16,7 +16,7 @@
;;; You should have received a copy of the GNU General Public License
;;; along with tissue. If not, see <https://www.gnu.org/licenses/>.
-(define-module (tissue web)
+(define-module (tissue web static)
#:use-module (rnrs exceptions)
#:use-module (rnrs io ports)
#:use-module (srfi srfi-1)