aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefile10
-rw-r--r--nim/file.nim (renamed from file.nim)0
-rw-r--r--nim/logger.nim (renamed from logger.nim)0
-rw-r--r--nim/main.nim (renamed from main.nim)2
-rw-r--r--nim/ping.nim (renamed from ping.nim)0
5 files changed, 6 insertions, 6 deletions
diff --git a/makefile b/makefile
index 8ab718e..c3d3052 100644
--- a/makefile
+++ b/makefile
@@ -3,12 +3,12 @@
3# Licence: EUPL-1.2 3# Licence: EUPL-1.2
4 4
5 5
6tickwatch: $(wildcard *.nim) 6tickwatch: $(wildcard nim/*.nim)
7 nim c \ 7 nim c \
8 ${NIM_FLAGS} \ 8 ${NIM_FLAGS} \
9 -d:release \ 9 -d:release \
10 -o:tickwatch \ 10 -o:tickwatch \
11 main.nim 11 nim/main.nim
12 12
13.PHONY: clean 13.PHONY: clean
14clean: 14clean:
@@ -19,7 +19,7 @@ check:
19 nim r \ 19 nim r \
20 ${NIM_FLAGS} \ 20 ${NIM_FLAGS} \
21 -d:test \ 21 -d:test \
22 main.nim 22 nim/main.nim
23 23
24.PHONY: check-loop 24.PHONY: check-loop
25check-loop: 25check-loop:
@@ -27,7 +27,7 @@ check-loop:
27 nim r \ 27 nim r \
28 ${NIM_FLAGS} \ 28 ${NIM_FLAGS} \
29 -d:test \ 29 -d:test \
30 main.nim 30 nim/main.nim
31 31
32.PHONY: install 32.PHONY: install
33install: 33install:
@@ -36,4 +36,4 @@ install:
36 -d:release \ 36 -d:release \
37 -o:tickwatch \ 37 -o:tickwatch \
38 --outdir=${DESTDIR}/bin \ 38 --outdir=${DESTDIR}/bin \
39 main.nim 39 nim/main.nim
diff --git a/file.nim b/nim/file.nim
index 83c2560..83c2560 100644
--- a/file.nim
+++ b/nim/file.nim
diff --git a/logger.nim b/nim/logger.nim
index 48aedf2..48aedf2 100644
--- a/logger.nim
+++ b/nim/logger.nim
diff --git a/main.nim b/nim/main.nim
index 07686ed..0ea96f4 100644
--- a/main.nim
+++ b/nim/main.nim
@@ -23,7 +23,7 @@ const
23 command -v git >/dev/null && git describe --tags --always || echo $VERSION 23 command -v git >/dev/null && git describe --tags --always || echo $VERSION
24 """).strip() 24 """).strip()
25 HELP_TEXT = 25 HELP_TEXT =
26 staticRead("readme.md") 26 staticRead("../readme.md")
27 .split("```helptext", 1)[1] 27 .split("```helptext", 1)[1]
28 .split("```", 1)[0] 28 .split("```", 1)[0]
29 .strip() 29 .strip()
diff --git a/ping.nim b/nim/ping.nim
index dd41882..dd41882 100644
--- a/ping.nim
+++ b/nim/ping.nim