Add new specification module skeleton.
This commit is contained in:
parent
29d4c7986f
commit
71341314d8
2 changed files with 41 additions and 1 deletions
|
@ -49,7 +49,7 @@ HACKERBASE-OBJS=hackerbase.o testing.o listing.o month.o period.o \
|
||||||
util-set-list.o util-time.o util-tag.o util-io.o \
|
util-set-list.o util-time.o util-tag.o util-io.o \
|
||||||
util-string.o util-io.o util-list.o util-parser.o texts.o \
|
util-string.o util-io.o util-list.o util-parser.o texts.o \
|
||||||
tests.o util-proc.o util-mail.o reminders.o util-format.o \
|
tests.o util-proc.o util-mail.o reminders.o util-format.o \
|
||||||
brmember-format.o logging.o
|
brmember-format.o logging.o specification.o
|
||||||
|
|
||||||
.PHONY: imports
|
.PHONY: imports
|
||||||
imports: $(HACKERBASE-DEPS)
|
imports: $(HACKERBASE-DEPS)
|
||||||
|
@ -345,3 +345,8 @@ LOGGING-SOURCES=logging.scm util-string.import.scm
|
||||||
|
|
||||||
logging.o: logging.import.scm
|
logging.o: logging.import.scm
|
||||||
logging.import.scm: $(LOGGING-SOURCES)
|
logging.import.scm: $(LOGGING-SOURCES)
|
||||||
|
|
||||||
|
SPECIFICATION-SOURCES=specification.scm
|
||||||
|
|
||||||
|
specification.o: specification.import.scm
|
||||||
|
specification.import.scm: $(SPECIFICATION-SOURCES)
|
||||||
|
|
35
src/specification.scm
Normal file
35
src/specification.scm
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
;;
|
||||||
|
;; specification.scm
|
||||||
|
;;
|
||||||
|
;; Global organizational specification.
|
||||||
|
;;
|
||||||
|
;; ISC License
|
||||||
|
;;
|
||||||
|
;; Copyright 2023 Brmlab, z.s.
|
||||||
|
;; Dominik Pantůček <dominik.pantucek@trustica.cz>
|
||||||
|
;;
|
||||||
|
;; Permission to use, copy, modify, and/or distribute this software
|
||||||
|
;; for any purpose with or without fee is hereby granted, provided
|
||||||
|
;; that the above copyright notice and this permission notice appear
|
||||||
|
;; in all copies.
|
||||||
|
;;
|
||||||
|
;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||||
|
;; WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||||
|
;; WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
||||||
|
;; AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
|
||||||
|
;; CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
||||||
|
;; OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
;; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||||
|
;; CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
;;
|
||||||
|
|
||||||
|
(declare (unit specification))
|
||||||
|
|
||||||
|
(module
|
||||||
|
specification
|
||||||
|
(
|
||||||
|
)
|
||||||
|
|
||||||
|
(import scheme)
|
||||||
|
|
||||||
|
)
|
Loading…
Add table
Add a link
Reference in a new issue