about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2023-04-04 09:26:45 -0500
committerCase Duckworth2023-04-04 09:26:45 -0500
commit8c7ce9b5e1581223de11b8f59ccce8d79e93a354 (patch)
tree8837c493415b72ace7a0eeb27e2cd2fea24f2047
parentAdd command line arguments (diff)
downloadwikme-8c7ce9b5e1581223de11b8f59ccce8d79e93a354.tar.gz
wikme-8c7ce9b5e1581223de11b8f59ccce8d79e93a354.zip
Add testing
-rw-r--r--Makefile4
-rw-r--r--README.txt9
2 files changed, 11 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 1dd66d1..e0723e5 100644 --- a/Makefile +++ b/Makefile
@@ -22,7 +22,9 @@ $(LIB): $(SOURCE)
22install: $(NAME) 22install: $(NAME)
23 install -Dt $(DESTDIR)$(PREFIX)/$@ $(NAME) 23 install -Dt $(DESTDIR)$(PREFIX)/$@ $(NAME)
24 24
25test: # TODO 25test: $(NAME)
26 @echo "Converting test/ to a wiki in out/ ..."
27 ./$(NAME) test -o out
26 28
27clean: 29clean:
28 rm -f *.import.scm *.so *.o 30 rm -f *.import.scm *.so *.o
diff --git a/README.txt b/README.txt index ed0c990..941b207 100644 --- a/README.txt +++ b/README.txt
@@ -14,9 +14,16 @@ requirements:
14 14
15build: 15build:
16 16
17- ./bootstrap
18- make 17- make
19 18
20install: 19install:
21 20
22- make install 21- make install
22
23test:
24
25- make test
26
27[Build the files in test/ to out/. This is not a great testing framework yet.]
28
29