aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 5 insertions, 5 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