aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-08-01 01:16:22 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-08-01 01:18:47 +0200
commit860c066fe09981f09f7ba71ce270c4486b571872 (patch)
treecdcf044964a7c16f0b749d3e71ed241a015a6f86 /Makefile
parentChange JavaScript build system to esbuild. (diff)
downloadcalp-860c066fe09981f09f7ba71ce270c4486b571872.tar.gz
calp-860c066fe09981f09f7ba71ce270c4486b571872.tar.xz
Change README to a markdown file.
The self-formatted code was fancy, and it showed of part of our functionality. It was however cumbersome to keep the file updated, and pre-formatted text on webpages honestly doesn't look that good. The contents of the README are however unchanged in this commit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 8a1d4d23..f8827603 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ LIMIT_FILES=$(LIMIT:%=--only %)
# Skip these files when testing
SKIP=--skip $(PWD)/tests/test/web-server.scm
-all: go_files README static $(LOCALIZATIONS)
+all: go_files static $(LOCALIZATIONS)
$(MAKE) -C doc/ref
XGETTEXT_FLAGS = --from-code=UTF-8 --add-comments --indent -k_
@@ -71,13 +71,10 @@ install: all
$(MAKE) -C static install
$(MAKE) -C system install
$(MAKE) -C doc/ref install
- install -m 644 -D -t $(DESTDIR)/usr/share/doc/calp README
+ install -m 644 -D -t $(DESTDIR)/usr/share/doc/calp README.md
install -m 755 -D -t $(DESTDIR)/usr/lib/calp/ scripts/tzget
install -m755 -D production-main $(DESTDIR)/usr/bin/calp
-README: README.in
- ./main text < README.in | sed "s/<<today>>/`date -I`/" > README
-
lcov.info: $(GO_FILES)
env DEBUG=0 tests/run-tests.scm --coverage=$@ $(if $(VERBOSE),--verbose) $(SKIP) $(LIMIT_FILES)