diff options
author | bptato <nincsnevem662@gmail.com> | 2021-08-07 12:16:29 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-08-07 12:16:29 +0200 |
commit | fa4560f63e38886b2b7541642b9aa1656dc40508 (patch) | |
tree | 7177fd845926e92b655306e08f4b5a8fc5156b4d /makefile | |
parent | ab963e4efe0871a6bdedf2f56fcfb9ed15636d12 (diff) | |
download | chawan-fa4560f63e38886b2b7541642b9aa1656dc40508.tar.gz |
Reorganize imports
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile index 1686ac64..92ab5048 100644 --- a/makefile +++ b/makefile @@ -1,12 +1,12 @@ NIMC = nim compile -FLAGS = -d:ssl -o:twt +FLAGS = -d:ssl -o:twt -p:src/ -p:. --import:utils/eprint FILES = src/main.nim debug: $(NIMC) $(FLAGS) $(FILES) release: - $(NIMC) $(FLAGS) -d:release $(FILES) + $(NIMC) $(FLAGS) -d:release -d:strip $(FILES) danger: - $(NIMC) $(FLAGS) -d:danger $(FILES) + $(NIMC) $(FLAGS) -d:danger -d:strip $(FILES) clean: rm ./twt |